Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Victor Kirhenshtein

#1576
Announcements / Re: NetXMS 2.2.7 released
August 16, 2018, 01:02:39 PM
Could you show "General" tab as well?
#1577
General Support / Re: netxms on mssql 2014
August 16, 2018, 12:13:42 PM
Hi,

what Java version you are using? If it is 6 or 7, try to upgrade to Java 8.

Best regards,
Victor
#1578
Announcements / Re: NetXMS 2.2.7 released
August 16, 2018, 12:12:39 PM
Hi,

could you describe your issue in more details (preferably with configuration and result screenshots) in separate topic or in bug tracker ticket? It could be issue that was solved or it could be completely different bug.

Best regards,
Victor
#1579
Добавьте ?lang=en к URL.
#1580
Try to run configuration poll manually (right click on node, Poll, then Configuration). Check what agent will report.

Best regards,
Victor
#1581
Hi,

check agent configuration file - it should have correct log settings and correct management server address in MasterServers. You can also tun agent in foreground with maximum debug as

nxagentd -D9

and check what is going on.

Best regards,
Victor
#1582
General Support / Re: NetXMS CPU Usage High
August 10, 2018, 01:54:43 PM
No, they are not. Put // in front of each line.

Best regards,
Victor
#1583
General Support / Re: NetXMS CPU Usage High
August 10, 2018, 11:11:46 AM
It hangs in same place. It looks like zlib bug, for deeper debugging we need actual data being compressed. As a workaround you can try to disable NXCP compression for client sessions by commenting out lines 1894 and 1895 (should looks like

            m_dwFlags |= CSF_COMPRESSION_ENABLED;
            msg.setField(VID_ENABLE_COMPRESSION, true);

in src/server/core/session.cpp and recompile server.

Best regards,
Victor
#1584
Я скорее всего разобрался (на днях отвечал в английском форуме). Мне удалось повторить у себя эту ситуацию и исправить. В 2.2.8 должно работать.
#1585
General Support / Re: NetXMS CPU Usage High
August 09, 2018, 03:53:09 PM
Just found the place. Seems that server enters infinite loop deep within libz (compression library). Check if new version is available. Also, you can try to rebuild server with configure option --with-internal-zlib.

Best regards,
Victor
#1586
General Support / Re: NetXMS CPU Usage High
August 09, 2018, 03:30:58 PM
Are you sure that CPU usage was high when you capture this dump? I see lot of locks inside (that could be an indicator of another problem) but cannot find anything that can cause high CPU load.

Best regards,
Victor
#1587
Hi,

do you want to do those actions manually? If yes the your configuration seems to be correct. Do you get any output from your tool?

Best regards,
Victor
#1588
General Support / Re: Netxms rancid export script
August 09, 2018, 02:34:52 PM
Hi,

this is simple nxshell script that do what you need:


import csv, sys

w = csv.writer(sys.stdout, dialect='excel')
w.writerow(['name', 'ip', 'type']) # Header

for node in [o for o in s.getAllObjects() if isinstance(o, objects.Node)]:
    enabled = node.getCustomAttributes().get("RANCID_ENABLED")
    if enabled != None and int(enabled) == 1:
        w.writerow([
            node.getObjectName(),
            node.getPrimaryIP().getHostAddress(),
            node.getCustomAttributes().get("RANCID_TYPE")
        ])


You can find more information about nxshell here: https://wiki.netxms.org/wiki/Using_nxshell_to_automate_bulk_operations

Best regards,
Victor
#1589
General Support / Re: Discovery of MAC addresses
August 09, 2018, 02:24:00 PM
Hi,

I was able to reproduce and fix this issue. Fix will be included into 2.2.8 release.

Best regards,
Victor
#1590
General Support / Re: NetXMS CPU Usage High
August 09, 2018, 12:15:06 PM
Hi,

sorry, I forgot to attach script. Now it's attached. Script expects netxmsd to be in your PATH. If it is not, change 'netxmsd' in script's second line to full path to netxmsd.

On Centos you likely build NetXMS from sources - then debug information is embedded into binaries. You only have to install gdb package if not installed already:

yum install gdb

Best regards,
Victor