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

#4816
General Support / Re: Out of memory NetXMS v1.2.5
February 02, 2013, 01:16:57 PM
Hi!

Looks like memory leak in NetXMS server. Is it possible to you to run it under valgrind and send me the log? Correct command will be

valgrind --leak-check=full --undef-value-errors=no --log-file=netxmsd-valgrind.log netxmsd -D3

This will run netxmsd under valgrind in foreground. Let it run for few hours, then shutdown by entering "down" in server's console, and send me netxmsd-valgrind.log.

Best regards,
Victor
#4817
General Support / Re: Deleted nodes still throwing events
February 01, 2013, 03:11:43 PM
Hi!

Looks like some problem with node deletion. Can you try to stop NetXMS server and run nxdbmgr check? If node is really node bound to any subnet or container, it should be detected and deleted.

Best regards,
Victor
#4818
Quote from: sabonez on August 07, 2012, 02:08:35 PM
Первое наблюдение - дискавер по LLDP отлично работает с моделями, у которых Port Description вида "RMON Port 10 on Unit 1", но не работает с теми, у которых такое - "D-Link DES-1228/ME R2.00 Port 25". Подобное описание портов имеется у серий Gigabit- и Metro- Ethernet Switch.

Вроде нашел причину - в обработке LLDP информации есть баг, который не позволяет корректно определять линки между устройствами разных моделей (при lldpRemPortIdSubtype = 7).
#4819
Пытаюсь разобратся сейчас с DGS-3627G. Полный дамп очень бы помог, можно просто все под .1. Если не получится, то .1.3.111.2.802.1.1.13, .1.0.8802.1.1.2, .1.3.6.1.2.1.2, .1.3.6.1.2.1.17.

P.S. Если возможно, то еще то, что сам коммутатор расказывает про LLDP через свой management interface.
#4820
General Support / Re: Configuration of Situation
February 01, 2013, 10:37:12 AM
Hi!

Yes, I got it. Sorry for not responding, I didn't have time yet to work on it. I hope I'll do that in a next few days.

Best regards,
Victor
#4821
Hi!

The correct way of adding Zest (and other dependencies) is via Help->Install Software and correct download site. There are file called eclipse_addons.txt where all necessary add-ons with appropriate download sites listed.

Best regards,
Victor
#4822
General Support / Re: upgrade 1.2.3 to 1.2.5
January 31, 2013, 06:05:09 PM
Hi!

You have some events with long messages, and they are getting truncated when inserted into database. In 1.2.6, limit for message length will be increased to 2000 characters (from current 255 characters), so most likely these errors will go away.

Best regards,
Victor
#4823
Тут скорее всего сложнее проблема. Если DCI есть, но стали UNSUPPORTED, это означает, что сервер больше не считает, что данный узел - это сам сервер. Скорее всего где-то в дереве появился его дубликат. Проверьте в Entire Network в соответствующем субнете. Если это так, то удалите неправильный узел и перезапустите сервер.
#4825
Думаю он там не был описан :)
#4826
Имеются ввиду predefined graphs? В них можно делать псевдо-папки, используя символы -> в названии. Например, если задать имя NetXMS->Internals->DB Writer Queue, то выглядеть это будет как на приложенном скриншоте.
#4827
Hi!

Are you building RCP (desktop) console or web console? Also, please show exact error message.

Best regards,
Victor
#4828
General Support / Re: Host name changes - not updating
January 30, 2013, 11:25:22 PM
Hi!

"system name" is just an attribute of the node, not the name of an object in NetXMS. If you want to keep node object's name consistent with "system name" property, you can implement simple configuration poll hook script, like this:


if (($node->snmpSysName != null) && ($node->snmpSysName != ""))
{
   RenameObject($node, $node->snmpSysName);
}


Put this script into script library under name Hook::ConfigurationPoll, and then nodes will be renamed when system name changes. Of course, you can add more complicated logic here.

Best regards,
Victor

P.S. More complicated hook script example: https://www.netxms.org/forum/general-support/how-use-configuration-poll-hook/msg8482/#msg8482
#4829
В текущей версии не получится. Для 1.2.6 я добавлю две новые функции в NXSL: ManageObject и UnmanageObject. Тогда можно будет поставить хук на configuration poll и в нем сделать unmanage нужным интерфейсам.
#4830
General Support / Re: connect to the database netxms
January 30, 2013, 04:31:55 PM
Hi!

It just means what it says: access to database denied. You either using incorrect password, or user netxms is not allowed to login from localhost. Check your MySQL settings.

Best regards,
Victor