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

#3226
Для драйвера ODBC в качестве имени сервера надо указывать имя источника данный (ODBC data source).
#3227
А флажок isLLDP показывается Yes на свитчах? Если на debug консоли сервера дать команду

show topo id объекта

что он выдает?
#3228
По XML - скорее всего на Windows ему не нравится / как разделитель пути к файлу - поставьте \.

У пользователя, которым подключается агент, должно быть право EXECUTE на функцию MON_GET_TABLE. Возможно проблема в том что нет прав на эту функцию.
#3229
Для SSH поля запрос и ответ должны быть пустыми.
#3230
Проверьте как настроен агент на прокси - в 1.2.16 появилась одна особенность - если сервер прописан и под MasterServers, и под Servers или ControlServers, то привилегии могут оказатся ниже чем Master (то что идет в списке последним). Если это так, оставьте только MasterServers.
#3231
Общие вопросы / Re: Проблема с LLDP
February 23, 2015, 10:44:15 PM
Проблема не в snmp walk - значения одни и те-же, просто nxsnmpwalk не конвертирует их в hex для показа. Попробуйте руками запустить topology poll на этих устройствах - что он выведет? Можно включить также дебаг уровня 6 на сервере и смотреть по логу что происходит во время опроса.

#3232
Общие вопросы / Re: ICMP.PACKET_LOSS
February 23, 2015, 10:41:35 PM
Тут вопрос от чего считать loss - сейчас PING субагент дает % потерь за минуту, и они могут иметь какой-то смысл поскольку пинг делается несколько раз в минуту. Как ето сделать только на серверной стороне - пока у меня четкого представления нет. Слать с сервера пинги с небольшим интервалом на все настроенные ноды на случай если понадобится - вариант на мой взгляд плохой. Один из вариантов как это сделать на DCI - собирать response time в одном DCI, конвертировать 10000 в 100 а все остальное в 0, и сделать скрипт DCI который будет доставать среднее для DCI #1 - это и будет packet loss за последние N опросов.
#3233
Possibly problem caused by the fact that even if proxy is used for communications, primary host name resolution happens on server, so if it still resolves to old address on server side then server will continue using old IP.

Best regards,
Victor
#3234
Looks like result of database corruption. If I remember correctly lost_interface_#### objects was created in some older versions after errors. Current version should not create them. As they likely had unreachable IP addresses, status poll just take longer due to timeouts.

Best regards,
Victor
#3235
General Support / Re: Netxms OracleDB errors
February 23, 2015, 09:58:42 PM
Hi,

seems that metadata is incorrect for some reason. Try to stop server and execute the following query:


UPDATE metadata SET var_value='CREATE TABLE tdata_records_%d (record_id number(20) not null,row_id number(20) not null,instance varchar(255) null,PRIMARY KEY(row_id),FOREIGN KEY (record_id) REFERENCES tdata_%d(record_id) ON DELETE CASCADE)' WHERE var_name='TDataTableCreationCommand_1';


then drop table(s) having ORA-00001 errors and run nxdbmgr check again (it should re-create all missing tables correctly).

Best regards,
Victor
#3236
General Support / Re: Invalid network mask - v 1.2.17
February 23, 2015, 09:10:55 PM
Hi,

most likely you already have (presumably incorrect) subnet object for /24. You can check what's inside and delete subnet object (make sure that nodes inside it bound to at least one container, then they will not be deleted with the subnet), then do configuration poll on a node - it should create correct /26 subnet object.
Also, in 2.0 we do some fixes to subnet creation and binding logic, it will help in such situations.

Best regards,
Victor
#3237
Про world map - согласен, и сделать это по идее не сложно. Добавил в трекер (https://dev.raden.solutions/issues/777).

Про базы не совсем понял - какие именно базы и как их объединять?
#3238
Сейчас можно настроить что-то похожее. Для любой ноды можно создать internal DCI PingTime. Соответственно в Last Values будет время отклика на ping во время последнего status poll. Затем можно настроить DCI Summary Table по этому параметру и видеть в виде таблицы времена отклика для узлов.
#3239
General / Re: WebUI can not generate the war file
February 23, 2015, 08:18:21 PM
Do you have WAR products feature (org.eclipse.libra.warproducts.feature.feature.group) installed? If yes, what version? I use 0.3.1.

Best regards,
Victor
#3240
Hi,

O_RDONLY means that agent wants read only access to the file. Sharing mode is controlled by third argument, which is set to _SH_DENYNO, meaning that agent allows both read and write shared access to the file. However, the problem may be with the application writing to the file - if application requests exclusive access (i.e. not permitting read access by others), it will not be able to open file for writing. We cannot do anything about it. If you can control the application in question you can change it or request application developers to allow shared read access to the log.

Best regards,
Victor