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

#3961
Отфильтровать аудит лог по пользователю и сообщению (по маске User%logged in%) с убывающей сортировкой по дате - верхняя запись будет последним логином.
#3962
General Support / Re: "Get DCI" Errors
February 24, 2014, 11:06:56 AM
Hi!

Recently I've found a bug that prevents console from sending keep-alive messages to the server, and so server can forcibly disconect session after 15 minutes. Looks like it could be ypur problem as well. It is fixed in upcoming 1.2.13 release.

Best regards,
Victor
#3963
Announcements / Re: NetXMS 1.2.12 released
February 24, 2014, 11:05:12 AM
Похоже что каким-то образом создался обьект с пустым именем. Можете прислать результат команды

nxadm -c "show objects"

?
Ну и после этого можно попробовать найти этот обьект и дать ему какое-то имя руками.
#3964
General Support / Re: Request timed out
February 21, 2014, 10:07:18 PM
Yes, it is available (you can get current sources by cloning git repository http://git.netxms.org/public/netxms.git and switching to branch "develop"). But it is client side change, and building console may be non-trivial task (you will need Maven for building client library and Eclispe 3.7 with right set of plugins listed in src/java/eclipse_addons.txt for building console).

Best regards,
Victor
#3965
General Support / Re: Request timed out
February 21, 2014, 09:15:27 PM
Hi!

There is hard-coded read timeout on server side, which is used to detect dead sessions. Normally it should not happen, because client sends keep-alive messages once per minute. However, there is a bug in 1.2.12 which prevents client from sending these messages, and so inactive session terminated after 15 minutes. I already fix this bug, and after 1.2.13 release problem should be gone.

Best regards,
Victor
#3966
General Support / Re: WebUI
February 21, 2014, 02:27:54 PM
Hi!

Seems that there is a problem with application server embedded into current installer. I replace it with latest Jetty version and everything looks good now. I just updated web UI installers on our download page. Remove existing web UI version before installing new one.

Best regards,
Victor
#3967
General Support / Re: Agent Deployment
February 20, 2014, 08:39:12 PM
Yes, remote installation actually contacts running agent and instructs it to upgrade itself (by running installer in unattended mode). Remote upgrade without running agent is not possible.

Best regards,
Victor
#3968
General / Re: JavaAPI JMX integration
February 20, 2014, 08:03:08 PM
Hi!

There are no ready-to-use solution for JMX integration. Some work is underway, but it's not ready yet. What we currently have is ability to write custom sub-agents in Java - you probably can use it to develop own subagent in Java relatively easy.

Best regards,
Victor
#3969
General Support / Re: WebUI
February 20, 2014, 08:00:56 PM
Hi!

I don't really understand what do you mean by "output window". Can you share a screenshot maybe?

Best regards,
Victor
#3970
General Support / Re: Agents polling
February 20, 2014, 07:58:49 PM
Hi!

Do you have agent's log from this server? Otherwise it's hard to tell what was happening... One of possible issues could be that there was too many connections hanging, so agent stop accepting new connections.

In 1.2.12 it is possible to get node summary per subnet or container - just select subnet in object tree and in object details view you'll have "Nodes" tab where all nodes inside this subnet or container will be listed, including agent version.

Best regards,
Victor
#3971
General Support / Re: Agent Deployment
February 20, 2014, 07:54:06 PM
Hi!

On what OS? If this is Windows, can you try to run installer on one node manually and check it it will report any errors?

Best regards,
Victor
#3972
General Support / Re: Plagued with DCI collection errors
February 20, 2014, 07:53:09 PM
Hi!

Seems like common problem, there are few other very similar bug reports. We are trying to reproduce it and fix.

Best regards,
Victor
#3973
General Support / Re: Node Name in maps
February 20, 2014, 07:51:58 PM
Strange, I have normal size font on my machine. Console is on Windows, right? What is your screen resolution (and DPI if you can get this info)?

Best regards,
Victor
#3974
Скрипт должен быть таким:


return %(true, substr($1,1,2));


Ну и это в принципе не обязательно, все параметры FileSystem.* понимают и формат вида C:\
#3975
Announcements / Re: NetXMS 1.2.12 released
February 20, 2014, 07:45:39 PM
There are two workarounds:
1. use built-in "admin" account - it always has all access rights;
2. Assign access rights directly in database. To do so, stop NetXMS server, then execute query like this:

UPDATE users SET system_access=system_access+134217728 WHERE id=insert_user_id_here

and start server.

Best regards,
Victor