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

#451
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).
#452
General Support / Re: libc segfault crash
March 10, 2016, 05:05:36 PM
Add "main" as well, not only beta
#453
General Support / Re: libc segfault crash
March 10, 2016, 09:36:09 AM
Install netxms-base-dbg and netxms-server-dbg
#455
Agent by default is running as windows service and can't interact with the GUI. In older version os windows (before 7) you can enabled "Interact with GUI" option in service manger, but for newer ones – you'll have to run agent as application, not as service.
You can add it to autorun, and if you want to hide console window – start it with "-H" command line option.
#456
Actually you don't need to restart Tomcat. In default configuration it support hot deploy – just remove old war file (don't remove uncompressed folder, just war) and copy new one. It even should detect if you just replace with new version.
#457
General Support / Re: Dell Networking MIBs Parse Error
February 10, 2016, 10:36:44 AM
Older Dell-Vendor-MIB.txt was already bundled with NetXMS. I've pushed new version alongside with N3000 MIBs to our git.

Snapshot of mibs directory attached to this message.
#458
Общие вопросы / Re: nxmc 2.0.2
February 09, 2016, 01:45:00 PM
А покажите результат "/usr/libexec/java_home -V"?

~ % /usr/libexec/java_home -V
Matching Java Virtual Machines (1):
    1.8.0_25, x86_64: "Java SE 8" /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home

/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home
#459
Общие вопросы / Re: nxmc 2.0.2
February 09, 2016, 12:37:48 PM
На моем основном лаптопе не могу повторить. Проверю еще на других.

DMG:
~/Development/netxms/netxms/packages/osx (develop↑1|✚1...)% ls -la nxmc-2.0.2.dmg
-rw-r--r--@ 1 alk  staff  31539535 Jan 30 00:40 nxmc-2.0.2.dmg
~/Development/netxms/netxms/packages/osx (develop↑1|✚1...)% openssl sha1 nxmc-2.0.2.dmg
SHA1(nxmc-2.0.2.dmg)= 1498e865507cab8bfca7e7e77e60702317621a01


#460
Общие вопросы / Re: nxmc 2.0.2
February 09, 2016, 12:22:23 PM
DMG, или сам .app?
#461
General Support / Re: Dell Networking MIBs Parse Error
February 09, 2016, 12:16:44 PM
I've successfully compiled dellref.my (renamed to DELL-REF-MIB.txt) by including Dell_ITA.Rev_1_1.my as well (renamed to Dell-Vendor-MIB.txt)

Name change is optional (except .txt extension).
#462
Verify that MIB file compiled and available for the server (/var/lib/netxms/netxms.mib).
#463
General Support / Re: SMS error
February 09, 2016, 09:57:36 AM
Verify it with screen (or minicom, etc.):

screen /dev/ttyUSB2 9600

Type "AT" and press Enter – you should get "OK".

(close screen – press Ctrl-A, then "K")
#464
General Support / Re: GPS
February 09, 2016, 09:54:44 AM
You can try development branch from git: https://git.netxms.org/public/netxms.git (branch name "develop")

Quote from: gmonk63 on February 07, 2016, 01:31:22 AM
Is 2.0.3  source available to download and build for testing ?   
#465
General Support / Re: Syslog monitoring
February 09, 2016, 09:52:50 AM
I'm not familiar with NLog, but it looks like syslog target is not used (single logger in rules, with writeTo=fileTarget).
Also you need to configure syslog target (according to https://github.com/graffen/NLog.Targets.Syslog):  <targets>
    <target name="syslog" type="Syslog" syslogserver="127.0.0.1" port="514" facility="Local7" sender="MyProgram" layout="[CustomPrefix] ${machinename} ${message}" />
  </targets>