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

#1351
А какой тип карты - автоматическая топология или custom? И выключен ли automatic layout?
#1352
Да, можно. У агента есть список PDH.ObjectInstances который как аргумент принимает PDH объект. Например, для получения всех физических дисков можно использовать PDH.ObjectInstances(PhysicalDisk).
#1353
Hi,

you probably should check database health and performance first - it could be that for some reason database is unable to handle INSERTs for collected data. Also, check that database connection pool is not exhausted (you can check log file for DB connection pool related errors as well as check active pool connections with show dbcp command in server debug console). You may also try to increase value of server configuration parameter DBWriter.DataQueues.

Best regards,
Victor
#1354
General Support / Re: Unable to Start Netxms Server
April 25, 2019, 10:30:18 AM
Hi,

yes, it was fixed in 2.2.13. We also plan release 2.2.14 next week.

Best regards,
Victor
#1355
Hi,

after you unpack archive you should have nxmc (or nxmc.exe on Windows) executable inside whatever target directory you were using for extraction. Just run it.

Best regards,
Victor
#1356
General Support / Re: subagent
April 18, 2019, 06:16:10 PM
Right click on node, select Tools->Info->Agent->Subagent list

To load subagent add

SubAgent = name.nsm


to your nxagentd.conf.

Best regards,
Victor
#1357
"Access denied" error means that current user has no access to user database. Also, before creating user you have to lock user database, like this:


s.lockUserDatabase()
s.createUser("new_user")
s.unlockUserDatabase()


Best regards,
Victor
#1358
Did you install openssl-devel package?

This is from my RHEL 7 system:

build-rhel-7-x64:~$ rpm -qa | grep openssl
openssl-libs-1.0.2k-16.el7_6.1.x86_64
openssl-devel-1.0.2k-16.el7_6.1.x86_64
openssl-1.0.2k-16.el7_6.1.x86_64

Best regards,
Victor
#1359
General Support / Re: top 5 or 10 busy APs
April 16, 2019, 10:32:58 PM
Can you provide more details on in what form you have utilization data?

Best regards,
Victor
#1360
Actual failure related to OpenSSL libraries:

./conftest: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory

Make sure you have matching libssl development and binary packages and that correct libssl.so is in library path.

Best regards,
Victor
#1361
Hi,

NetXMS comes with some VMWare MIBs pre-packed:

VMWARE-AGENTCAP-MIB.txt
VMWARE-CIMOM-MIB.txt
VMWARE-ENV-MIB.txt
VMWARE-OBSOLETE-MIB.txt
VMWARE-PRODUCTS-MIB.txt
VMWARE-RESOURCES-MIB.txt
VMWARE-ROOT-MIB.txt
VMWARE-SRM-EVENT-MIB.txt
VMWARE-SYSTEM-MIB.txt
VMWARE-TC-MIB.txt
VMWARE-VC-EVENT-MIB.txt
VMWARE-VCOPS-EVENT-MIB.txt
VMWARE-VMINFO-MIB.txt

If you add same MIBs them may be just redundant. If you add new MIB files to MIB directory, make sure they have .txt extension - directory compile option only reads txt files.

Best regards,
Victor
#1362
Hi,

could you please provide full config.log?

Best regards,
Victor
#1363
Custom templates should not be affected by that setting. If they do it likely means that template is not saved to database. Check that you do not have any SQL errors in server log and if database table "items" contains changes for your custom template.

Best regards,
Victor
#1364
Hi,

if those were standard templates then likely they were re-imported on startup. If this is the case set server configuration variable ImportConfigurationOnStartup to false. In 2.2.14 we changed that logic to only import missing templates and events by default.

Best regards,
Victor
#1365
Hi,

from configuration poll output it looks like SNMP is not detected on the node. Make sure that community string is correct and SNMP requests from NetXMS serever are allowed on device. You can use command line tools nxsnmpget and nxsnmpwalk to check if SNMP requests are going through.

Best regards,
Victor