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

#5956
General Support / Re: Console Crash
July 04, 2011, 11:29:16 AM
Hi!

What console crashes, legacy or java? For both, you can download version 1.1.1 from https://www.netxms.org/download/archive/.

Best regards,
Victor
#5957
Hi!

I don't think it's a 64-bit issue. Could you please post your agent's configuration files? Also, you can try to debug log parser by doing the following:

1. Change agent logging destination to file by setting LogFile = some_file in nxagentd.conf;
2. Add "trace" option to your log parser, like this:

<parser trace="7">

3. Stop agent's service and run agent in debug mode:

nxagentd -c <path_to_nxagentd.conf> -D 9

And watch how parser process events.

Best regards,
Victor
#5958
Hi!

It's not implemented yet. Will be implemented in next release (1.1.3).

Best regards,
Victor
#5959
Announcements / Re: NetXMS 1.1.2 released
June 28, 2011, 01:18:43 PM
Hopefully somewhere during the summer or early autumn. I plan to make some big changes in internal structure, and after these changes will be tested, it could be considered as stable.

Best regards,
Victor
#5960
Quote from: Ethril on June 27, 2011, 06:24:21 PM
1) Сортировка объектов в Object Browser идёт в case-sensitive порядке "A..Za..z", а не в более естественном "Aa..Zz", как в старой консоли. Может это как-то можно менять в опциях? Я не нашёл.

Popravil. Sledujuschij build uze budet normal'no sortirovat'.

Quote from: Ethril on June 27, 2011, 06:24:21 PM
4) Перестали автоматически отрисовываться графики из шаблонов @System.Agent, @System.SNMP. Хотя, может, так и задумано?

Da, tak i zadumano. Eto perezitok proshlogo, kogda nel'zja bilo dobavljat' svoi grafiki na performance tab i delat' auto-apply shabloni. Cherez nekotoroe vremja eti shabloni ischeznut voobsche, poskol;ku sejchas vse eto mozno sdelat' na obichnih shablonah.

Ostal'noe budu smotret' :)
#5961
Hi!

Delete all *.manifest files from C:\NetXMS\bin - then this error should disappear. I'll add automatic deletion of these files to next version of the installer.

Best regards,
Victor
#5962
Announcements / NetXMS 1.1.2 released
June 26, 2011, 11:01:06 PM
Hi all!

NetXMS version 1.1.2 is out. Changes from previous release:

- Added VLAN view in management console
- OpenStreetMap support improved; added local cache for map images
- Added option to use alternative tile server for geographic maps
- Geographic maps now can be used as background for network maps
- Implemented hierarchical maps
- New MIBs added: POLYCOM-RMX-MIB
- Multiple fixes and minor improvements in management console

Best regards,
Victor
#5963
A kakaja versija NetXMS? Esli 1.0.11, to poprobujte fail iz attacha.
#5964
Poprobujte postavit' vot etu versiju: https://www.netxms.org/download/dev/netxms-1.0.12-rc-19062011.tar.gz. Tam etot bag dolzen bit' ispravlen.
#5965
Dobrij den'!

A mozete zapustit' netxmsd pod gdb i kogda on upadet, sdelat' backtrace?

Zapusk:

# gdb netxmsd
gdb> run -D 1

Kogda upadet:

gdb> bt

i prislat' rezul'tat komandi bt.
#5966
General Support / Re: login problem
June 22, 2011, 12:55:12 PM
Try to run database check:

nxdbmgr check

Best regards,
Victor
#5967
General Support / Re: login problem
June 21, 2011, 06:09:36 PM
Hi!

Most likely the cause is that NetXMS server is stopped. What version you are using and on what platform?

Best regards,
Victor
#5968
Hi!

I have found and fixed some memory leaks, but no one of them seems to be able to eat memory so fast. However, can you try to install the following version: https://www.netxms.org/download/dev/netxms-1.0.12-rc-19062011.tar.gz? If this will not help, could you please run your server under valgrind for 5-10 minutes and send me the log? Command for running server under valgrind is following:

valgrind --leak-check=full --undef-value-errors=no --log-file=/tmp/netxmsd_valgrind.log /opt/netxms/bin/netxmsd -D 5

To stop server, enter command "down" on server's prompt.

Best regards,
Victor
#5969
Yes.
#5970
Nastroeno vrode vse pravil'no. Pohoze problema imenno v tom, chto snachala oprashivajutsja uzli za vpn gateway'em, a potom on sam. Vlijat' na porjadok oprosa osobo nel'zja. Ja podumaju chto s etim mozno sdelat'.

Dlja otladki scriptov mozno ispol'zovat' funkciju trace - ona vivodit soobschenie v log servera. Format takoj:

trace(debug_level, message)

Esli debug level 0, to budet generitsja INFO message.

Privedennij vishe script s trace'ami mozet vigljadet' tak:


s = FindSituation("VPNBStatus", "B");
if (s != NULL)
{
   trace(0, "Situation instance found, status=" . s->status);
   if (s->status == "down")
      return false; // Don't match rule
}
else
{
   trace(0, "Situation instance not found");
}
return true; // Match rule