News:

We really need your input in this questionnaire

Main Menu
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

#3826
General Support / Re: Agent Deployment
April 09, 2014, 09:48:34 AM
What directory pointed by FileStore parameter in nxagentd.conf? Can agent create files in this directory?

Best regards,
Victor
#3827
General Support / Re: Status Map Background
April 09, 2014, 09:37:15 AM
Hi!

It's not possible. Why this can be needed? Status map is just a grid, you cannot move or re-align elements on it.

Best regards,
Victor
#3828
General Support / Re: netxms WebUI with HTTP SSL
April 09, 2014, 09:35:49 AM
Hi!

We are using Jetty runner and Apache Procrun on Windows. It is possible to configure it for SSL, although your method probably easier. Relevant information can be found here:

http://www.eclipse.org/jetty/documentation/current/jetty-runner.html
http://wiki.eclipse.org/Jetty/Howto/Configure_SSL
http://commons.apache.org/proper/commons-daemon/procrun.html

Basically you need to create additional configuration file for Jetty and pass reference to it by changing service command line.

Best regards,
Victor
#3829
Hi!

Yes, you can setup Windows event log monitoring. There is a documentation part on log monitoring: https://www.netxms.org/documentation/adminguide/log-monitoring.html. To specify event log instead of file, prefix event log name with asterisk, like this:

<file>*System</file>

to parse system event log.

Best regards,
Victor
#3830
General Support / Re: MSSQL database size
April 09, 2014, 09:24:36 AM
Another common problem with MS SQL is when recovery model (http://msdn.microsoft.com/en-us/library/ms189275.aspx) set to Full and you don't do backups often - then database recovery log grows very fast because NetXMS do lot of inserts. You can check if this is the case by checking size of data files and log files for your database.

Best regards,
Victor
#3831
All the PhysicalDisk parameters deprecated and not working on most systems. Currently the only option is to integrate with smartmontools using external parameters.

Best regards,
Victor
#3832
Seems to be different issue. Could you please run it under gdb and send me stack trace?

Best regards,
Victor
#3833
Hi!

Seems to be a Tomcat problem. Try to stop Tomcat, remove both war file and deployed application, start Tomcat, and then copy war file again.

Best regards,
Victor
#3834
Even upgrading port to latest release will be great. If test system is a problem, I can provide you access to test virtual machines with FreeBSD. Please contact me directly if you are interested.

Best regards,
Victor
#3835
Announcements / Re: NetXMS 1.2.13 released
April 09, 2014, 09:15:48 AM
Quote from: raypetter on April 04, 2014, 09:13:57 PM
Posted this in general, but it might be more suitable in this thread as it did not occur on the previous version of netxms.

Please use general support instead of announces - it is more suitable for support questions.

Best regards,
Victor
#3836
I suspect that shutdown process terminates agent before it is able to send response back to server. I will check.

Best regards,
Victor
#3837
No, it's not possible. I'll add it as change request though.

Best regards,
Victor
#3838
Hi!

It could looks like following:


idxVoltage = $1->getColumnIndex("VOLTAGE");
idxStatus = $1->getColumnIndex("STATUS");

for(i = 0; i < $1->rowCount; i++)
{
   $1->set(i, idxVoltage, $1->get(i, idxVoltage) / 1000);
   if ($1->get(i, idxStatus) == 3)
   {
      $1->set(i, idxStatus, "OK");
   }
}


Best regards,
Victor
#3839
Announcements / Re: NetXMS 1.2.13 released
April 02, 2014, 08:24:56 PM
Hi!

You mean it crashed?

Best regards,
Victor
#3840
Скорее всего отваливается сессия по таймауту. А почему не используете Java консоль, там таких проблем не должно быть?