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

#436
Announcements / Telegram group
June 07, 2016, 06:22:31 PM
Hello.

We are evaluating new support channels, and now it's time for Telegram.
Join as at https://telegram.me/netxms.

Updated 07.08.2017:
Join Russian speaking group at https://telegram.me/netxms_ru.
#437
General Support / Re: OpenWRT Agent
June 03, 2016, 08:34:55 PM
I don't have build environment right now to check, but I'm pretty much sure I used  15.05.
You are using feed from https://github.com/netxms/openwrt-feed?
#438
Да, на этой неделе будет обновлен репозиторий.
#439
Как вариант - формировать сообщение (или его часть) скриптом (%[script_name] в тексте).

Другой вариант - настроить разные actions (с дополнительным текстом) для этих нод в EPP:

1:
Src=node1, node2, Container1
Event=SYS_IF_DOWN
Action=email critical
2:
Src=NOT (node1, node2, Container1)
Event=SYS_IF_DOWN
Action=email

Или:
1:
Src=node1, node2, Container1
Event=SYS_IF_DOWN
Action=email critical
Stop processing
2:
Event=SYS_IF_DOWN
Action=email
#441
Hello.

I found a few mentions of similar issue on google, but no definite answer how to fix it (or what cause that).
I'd suggest: completely restart tomcat (if hot deploy was used), upgrade jdk, change JDK vendor (e.g. openjdk -> oracle jdk)
#442
Я только что проверил – работает:

nxagentd.conf:
ExternalParameter = TestSUDO:sudo -u alk /tmp/test.sh

~ % cat /tmp/test.sh
#!/bin/sh

id

% ls -la /tmp/test.sh
-rwxr-xr-x  1 alk  wheel  14 Apr  8 01:16 /tmp/test.sh

~ % nxget localhost TestSUDO
uid=501(alk) gid=20(staff) groups=20(staff),503(boinc_project),502(boinc_master),12(everyone),61(localaccounts),79(_appserverusr),80(admin),81(_appserveradm),98(_lpadmin),501(access_bpf),701(com.apple.sharepoint.group.1),33(_appstore),100(_lpoperator),204

Запустите агент с DebugLevel=4 (e.g. nxagentd -D4) и проверьте ошибки.
#443
Thank you for this tip, I've added that key to Info.plist we use during packaging.
#445
General Support / Re: How to save map?
April 06, 2016, 01:26:09 PM
That's known limitation of the SWT on Linux (https://bugs.eclipse.org/bugs/show_bug.cgi?id=283960).

I registered new feature request for "save as image": https://dev.raden.solutions/issues/1201
#446
Check database consistency (in command line):nxdbmgr check
#447
General Support / Re: How to save map?
March 31, 2016, 12:50:54 PM
Copy to clipboard then paste and save into any image editor (mspaint on windows, Preview on mac)
#448
Please set debug level to 9 and replicate crash.
Debug level can be set in in netxmsd.conf (DebugLevel=9), this require restart.
You can also change debug level in runtime using nxadm:nxadm -c "debug 9"
#449
check "DBDriver" field in configuration file.
#450
General Support / Re: Dash Board
March 11, 2016, 07:54:14 AM
I think use use webkit for that. You can try to force it to use Mozilla's engine, but I had mixed experience with that.
Check this link: https://www.eclipse.org/swt/faq.php#browserspecifydefault

QuoteThe best opportunity for a user to set this property is by launching their application with a -D VM switch (eg.- add to the end of the eclipse.ini file: -Dorg.eclipse.swt.browser.DefaultType=webkit).