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

#1021
Пустой hardware id - подозрительно, похоже по какой-то причине не определился модем.

Запустите пожалуйста netxmsd с ключем "-D 4", в логе должны быть видны ответы модема.

Для проверки можно поменять параметр "AllowDirectSMS" в server settings на "1" и посылать произвольные sms через сервер при помощи команды nxsms:nxsms -u login -P password localhost +37129...... test
#1022
General Support / Re: management console for linux
March 27, 2010, 03:36:11 AM
Management console for linux is in development, but not available yet. Right now you can run windows console under wine.
#1023
General Support / Re: Probleme with libnetxms.so.0
March 26, 2010, 12:19:54 AM
Check "DBDriver" parameter in netxmsd.conf, is should point to correct driver, for example:
DBDriver = /user/local/lib/libnxddr_sqlite.so

#1024
Hello.

We are planing to provide binary packages for NetXMS, but we need to decide, which OS / Distribution should go first.

Note: most likely that there will be no binary package for Gentoo - only .ebuild, since Gentoo is user-build and completely unpredictable in sense of libraries and their versions.
#1025
General Support / Re: Probleme with libnetxms.so.0
March 24, 2010, 10:17:37 PM
Please check that file /etc/ld.so.conf.d/libc.conf contains line "/usr/local/lib" and then run "ldconfig" as root (it will produce no output).

After that run "ldconfig -p|grep libnetxms" to verify, output should be like this:root@b08s02ur:~# ldconfig -p|grep libnetxms
        libnetxms.so.0 (libc6,x86-64) => /usr/local/lib/libnetxms.so.0
        libnetxms.so (libc6,x86-64) => /usr/local/lib/libnetxms.so


If this will not help, please post output of "ldd /usr/local/bin/nxdbmgr".
#1026
Кстати, для таких простых скрипров можно не писать "sub main ...", достаточно $2 == 1
#1027
You could use File -> Export -> Table as CSV file to export both tables and then load CSV files into Excel.
#1028
Hello.

Fist of all, check server logs for failed queries
Second, check db writer queue size when server is running (Server.AverageDBWriterQueueSize DCI)
#1029
Hello.

Currently it can't be configured. I've added parameter "SMTPFromName" and it will be available in next release.

However, as temporary solution, you can patch sources in src/server/core/email.cpp, line 258.
#1030
General Support / Re: Timeout of web login
December 01, 2009, 01:30:14 PM
Sorry to say that, but existing web interface is abandoned (and will be replaced in the future).
Right now I suggest you to use Alarm viewer (currently windows only).

However, if you can't run windows application, it's possible to make quick and dirty solution which will be executed by a cron job and will generate a web page with list of alarms.
#1031
General Support / Re: CPU HEAT MONITORING DCI PARAMETERS
November 30, 2009, 03:32:07 PM
It's not supported "out of the box", but you can install lm_sensors and setup custom parameter in agent configuration.

Example for Core0:
ExternalParameter = CPU.Temperature:/usr/bin/sensors|egrep 'Core\s*0'|cut -d: -f2|awk '{gsub("[^0-9\\.]", "", $1); print $1;}'

Unfortunately, lm_sensors output can differ from system to system (however this one works on two of my test servers), so you should check and probably adjust my sample.

More information on ExternalParemeter is available in documentation (we will upload updated version in a few days) or in the forum: link
#1032
Общие вопросы / Re: Огромная БД
November 25, 2009, 11:34:00 AM
А какии операции тормозят?
#1033
Общие вопросы / Re: Огромная БД
November 23, 2009, 01:07:38 PM
Покажите пожалуйста результат запроса (замените DB_NAME на название базы):

SELECT table_schema,
table_name,
ROUND(data_length/1024/1024,2) total_size_mb
FROM information_schema.tables
WHERE table_schema = 'DB_NAME'
order by total_size_mb desc limit 10;
#1034
General Support / Re: API IN C for agent communication
November 11, 2009, 05:52:13 PM
Yes, you do not need server or console in this case.
#1035
General Support / Re: nxget command line tool
November 11, 2009, 05:49:25 PM
It's included in netxms distribution. When you compile from sources, it's build when --with-server is enabled. Windows version (binary) is available in NetXMS Installer for windows.