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 - Alex Kirhenshtein

#241
Announcements / Re: NetXMS 3.5 released
October 15, 2020, 10:32:13 PM
Try now, I've resigned repository.

Quote from: mdirks on October 15, 2020, 04:34:10 PM
On ubuntu 16 or 18 it is still 3.5.133

M. Dirks - ITeeCo

Quote from: Victor Kirhenshtein on October 14, 2020, 10:51:49 AM
3.5.136 is now available in repository.

Best regards,
Victor
#242
General Support / Re: Not all Interfaces are appearing
October 15, 2020, 03:55:56 PM
Check script "Hook::CreateInterface" in scripting library (Configuration -> Scripting Library). Script is executed on configuration poll and if it returns true - interface is created, if false - creation is blocked.
#243
Try adding
/MERGETASKS="fspermissions,sessionagent,useragent"
to command line
#244
General Support / Re: Active sessions from Grafana
September 18, 2020, 04:11:41 PM
thanks for clarification, I'll check it.
#245
General Support / Re: Active sessions from Grafana
September 18, 2020, 01:22:14 PM
You are testing version 1.2.3, correct?
#246
Похоже на проблему с категориямим алармов и правами доступа. Зайдите юзером "system"  и проверьте список алармов.
#247
На большинстве систем, которые я видел, по умолчанию syslog работает с отключенной сетевой частью (и порт 514/UDP свободен) - и не будет мешать netxmsd.
Если же сетевой коллектор включен, то возможное решение - поменять порт для netexmsd (параметр SyslogListenPort) и настроить форвард сообщений на порт netxmsd (https://www.rsyslog.com/sending-messages-to-a-remote-syslog-server/).
#248
General Support / Re: blank MIB tree
September 10, 2020, 04:42:50 PM
Make sure you have  "connection over slow link" is unchecked in login dialog.
#249
General Support / Re: netxms-dbdrv-mysql missing
September 09, 2020, 11:41:03 PM
Hello.

Ubuntu 20 ships with libmysqlclient version 8, which is not compatible with older 5.7 (and conflicts with mariadb connector).

Try netxms-dbdrv-mariadb instead.
#250
32bit builds are not supported by the framework we use (Eclipse RCP), so it's not possible for the moment.
You can install Web interface instead (on any 64bit capable system) and access it from 32bit system with the web browser.
#251
"nxdbmgr reset-system-account" unlock account "system", not "admin".
Login as system/netxms, then change password for user admin in user manager and re-lock user "system"
#252
What's in /etc/netxmsd.conf?
When installed, netxms-server package show following message:

NetXMS server is installed but currently stopped.

Additional steps required:

1. Edit default configuration file (/etc/netxmsd.conf)

2. Load database schema

   nxdbmgr init

3. Start daemon with command:

   systemctl start netxms-server


I've updated installation guide a bit, it should be pushed to to web soon.
#253
MySQL driver is not available on Ubuntu / Mint 20. You can use mariadb driver instead, it's compatible.

If you installed server from packages, nxdbmgr should be in /use/bin (and it's in default path)

Web UI - install jetty or tomcat, then deploy nxmc.war from the web site.

#254
Hello.

Please provide your support contract ID, I'll check why issue is still pending and prioritize it.
#255
General Support / Re: DCIs Description changing
July 29, 2020, 01:55:27 PM
You can use nxshell for that:

from org.netxms.client.datacollection import DataCollectionConfiguration, DataCollectionObject
from org.netxms.client.objects import Node, Template

o = s.findObjectByName("Alexs-MBP")
config = session.openDataCollectionConfiguration(o.objectId)
for dc in config.items:
    dc.description = dc.description + " - TEST"
    config.modifyObject(dc)
config.close()