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

#976
Общие вопросы / Re: RSS сдох?
December 19, 2012, 08:05:48 PM
Quote from: nOT on December 14, 2012, 04:48:43 PM
Alex, работает, только последняя новость от 15 Aug 2011, про 1.0.12 :)

И то верно. Скрипт работает гораздо лучше, если ему указать правильный источник данных :).  Поправил.
#977
Общие вопросы / Re: RSS сдох?
December 14, 2012, 03:05:21 PM
Поправил, https://www.netxms.org/rss теперь работает
#978
Announcements / Re: netxms.org moved to another hosting
October 27, 2012, 02:22:32 PM
Could you please provide more details?

Looks fine to me:

Alexs-MacBook-Air:~ alk$ svn ls https://svn.netxms.org/public/netxms
branches/
tags/
trunk/
#979
Announcements / Bugtracker migration
October 18, 2012, 02:00:03 PM
Hello.

We switched from Mantis to ChiliProject, which is now available at https://www.radensolutions.com/chiliproject/projects/netxms.
Most open issues are moved from Mantis to Chili, please check for status there.

Best regards,
Alex.
#980
Announcements / netxms.org moved to another hosting
October 18, 2012, 01:58:49 PM
Hello.

We moved whole netxms.org to another hosting, if you run into any problem with forum - please report it here or contact me via PM.

Best regards,
Alex.
#981
General Support / Re: nxagent on dd-wrt router
September 21, 2012, 06:54:02 PM
You need to setup environment for cross-compiling, quick search on google resulted in this link: http://www.dd-wrt.com/dd-wrtv2/downloads/others/sourcecode/toolchains/current-toolchains.tar.bz2
Check this link for more info: http://wiki.openwrt.org/doc/devel/crosscompile
#982
General Support / Re: Agent on Mac OS
September 21, 2012, 05:53:50 PM
Core agent already can be compiled and installed on OS X, however platform subagent in early stage of development. I just started it a week ago, and I think it will be included in 1.2.4 release.
In a meantime, you can use SNMP, according to Apple it's included in Server version of OS. Instructions: http://support.apple.com/kb/TA20884
#983
Проверьте пожалуйста, что есть права на запись в temp (java.io.tmpdir, обычно $CATALINA_BASE/temp) — и на уровне файловой системы, и в настройках java security manager (если включен)
#984
Announcements / High CPU usage after 1/7/2012
July 02, 2012, 01:19:15 PM
Hello.

As you might know, on July 1th, 2012 time was changed to 1 seconds back, which affected some NTP-enabled systems.
Symptoms are server lockup and high cpu usage for some processes.
We've got reports about Debian6 and Ubuntu12 servers running nxagentd.

Fix:
* Upgrade tzdata packages
* Either reboot server or stop ntpd then set date manually and then restart ntp and affected applications


UPDATE: looks like it's enough to just jump time a couple of seconds ahead using "date" command, no need to restart anything. Ntpd then will resolve this jump.

Also please check Marco's blog for more details.

More info:
http://my.opera.com/marcomarongiu/blog/2012/06/01/an-humble-attempt-to-work-around-the-leap-second
https://lkml.org/lkml/2012/7/1/203
#985
General Support / Re: Useful WMI Queries
June 14, 2012, 03:49:58 PM
Temperature of CPU's thermal zone:WMI.Query(root\WMI,"select * from MSAcpi_ThermalZoneTemperature",CurrentTemperature)

This temperature is in tenths of degrees Kelvin, so you need to add transformation script:
for Celsius:($1-2730)/10
for Fahrenheit:((($1-2730)/10)*1.8)+32
#987
Код написан под lm_sensors-3, но вот configure не проверяет версию - только наличие.
Постараюсь сегодня починить.
#988
В 1.2.1 будет поддержка lm_sensors
#989
Путь к файлу лога можно посмотреть таким SQL запросом: mysql> show global variables like 'log_error';
+---------------+--------------------------+
| Variable_name | Value                    |
+---------------+--------------------------+
| log_error     | /var/log/mysql/error.log |
+---------------+--------------------------+
1 row in set (0.00 sec)


Проверьте параметр log_warnings: mysql> show global variables like 'log_warnings';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| log_warnings  | 1     |
+---------------+-------+
1 row in set (0.00 sec)


Если значение меньше двух, то поменяйте:mysql> set global log_warnings = 2;
Query OK, 0 rows affected (0.00 sec)


После чего перезапустите netxmsd и повторите ошибку. Рестарт mysql не требуется.
#990
I'll try to include https support into upcoming 1.2.1 release, but in a meantime you can use http://www.stunnel.org/ to make it work.

Sample command line for stunnel3 (will listen on port 8888 for plain HTTP and connect to netxms.org:443 over HTTPS):stunnel -c -d 8888 -r netxms.org:443

Sample config for stunnel4:client = yes

[http]
accept = 8888
connect = netxms.org:443