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

#3781
General Support / Re: Agent Deployment
April 09, 2014, 10:54:30 AM
That could mean that installer cannot overwrite one of the files. It could happen if event viewer is open for example - it opens nxagentd.exe to read messages. If you manually start installer uploaded by server to file store directory it runs without problem?

Best regards,
Victor
#3782
General Support / Re: DCIs System.AntiVirus broken
April 09, 2014, 10:51:52 AM
Hi!

It seems to be working on my system:


C:\Source\NetXMS\x64\debug>nxget -e0 127.0.0.1 system.AntiVirusProduct.Active
1

C:\Source\NetXMS\x64\debug>nxget -e0 127.0.0.1 system.AntiVirusProduct.DisplayName
Microsoft Security Essentials

C:\Source\NetXMS\x64\debug>nxget -e0 127.0.0.1 system.AntiVirusProduct.UpToDate
1

C:\Source\NetXMS\x64\debug>


I've added additional debug to the agent to determine why it fails. I can provide you with intermediate agent build if you wish to test it.

Best regards,
Victor
#3783
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
#3784
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
#3785
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
#3786
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
#3787
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
#3788
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
#3789
Seems to be different issue. Could you please run it under gdb and send me stack trace?

Best regards,
Victor
#3790
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
#3791
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
#3792
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
#3793
I suspect that shutdown process terminates agent before it is able to send response back to server. I will check.

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

Best regards,
Victor
#3795
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