News:

We really need your input in this questionnaire

Main Menu
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

#1051
Could you show screenshot of overview and interfaces tabs for those nodes?

Best regards,
Victor
#1052
General Support / Re: Migration Error
January 12, 2020, 11:39:49 PM
Hi,

configuration file looks correct. How exactly you run nxdbmgr? Try to specify full path to old DB config and make sure it is accessible.

Best regards,
Victor
#1053
General Support / Re: L2 topology - LLDP gives NO links
January 09, 2020, 11:42:25 AM
Could you please show output of commands

nxadm -c "show lldp id"

for both nodes, replacing id with actual node ID?

Best regards,
Victor
#1054
General Support / Re: Netxms Agent - get oldest folder
January 08, 2020, 08:41:16 PM
Hi,

fifth argument to File.FolderCount represents age filter. If < 0, only files created after now - abs(value) will match; if > 0, only files created before now - value will match. For example, to count folders older than one day in /tmp (without recursion) you can use

File.FolderCount(/tmp,*,0,,86400)

Best regards,
Victor
#1055
If you get "connect timed out" after you press "Login" button in web UI, that means that backend application cannot connect to NetXMS server. Is NetXMS server on same machine? If not, check that port 4701 on NetXMS server is reachable from web server and that address of NetXMS server set correctly in web application properties.

Best regards,
Victor
#1056
Create file batch.sql containing single line

ALTER TABLE idata_119 DROP COLUMN raw_value;


and run command

nxdbmgr batch batch.sql

Best regards,
Victor

#1057
Hi,

seems that DB schema is inconsistent. If only one table is corrupted you can drop "raw_value" column from it and try to run upgrade again. Otherwise you may run nxdbmgr with -X option (it will ignore upgrade errors) and after completion manually check all errors.

Best regards,
Victor
#1058
deb build is in progress, will be available within hour or so.

Best regards,
Victor
#1059
Hi all!

We have published NetXMS 3.1 patch release 2. Most components have version 3.1.297 and some (Windows packages and UI) have version 3.1.300. This patch release should fix multiple issues found since patch release 1 including server deadlock reported recently by multiple users.

Best regards,
Victor

#1060
Hi,

we were unable to reproduce this issue. Please try to upgrade to latest version and check if it is still persist.

Best regards,
Victor
#1061
Yesterday we have fixed bug that cause deadlock on object access. It can be root cause for your issue as well. We will publish new patch release for 3.1 today - please check if it will help.

Best regards,
Victor
#1062
General Support / Re: L2 topology - LLDP gives NO links
December 18, 2019, 03:59:56 PM
Hi,

looks like server cannot retrieve all links for some reason. Could you please provide output of SNMP walk for .1.0.8802.1.1.2.1.4.1.1 for both nodes?

Best regards,
Victor
#1063
General Support / Re: Double Link in Maps
December 18, 2019, 03:54:23 PM
Hi,

looks like a bug. What version you are using?

Best regards,
Victor
#1064
No, it is not possible without server source code changes.

Best regards,
Victor
#1065
Hi,

this script will transform first argument from hex string (space separated) into text:

l = length($1);
out = "";
for(i = 1; i < l; i += 3)
out .= chr(x2d(substr($1, i, 2)));
return out;


You should be able to use it as is in DCI transformation.

Best regards,
Victor