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

#571
General Support / Re: about housekeeper
June 29, 2015, 06:18:56 PM
Can you please enable slow query logging (>1sec, for example) and post explain here (or send it to [email protected])?
If it's delete query (most likely), you can do it in transaction and roll it back:
BEGIN;
EXPLAIN ANALYZE DELETE FROM idata_...;
ROLLBACK;
#572
Yes, my bad – packages will be available tomorrow.
#573
Нужен томкат 7 или выше (или любой другой servlet container, который поддерживает Servlet API 3.0)
#574
General Support / Re: Server temperature
June 25, 2015, 12:44:58 PM
I think I've seen only one server where this query was working properly.
Check this thread for another solution: https://www.netxms.org/forum/general-support/windows-temperature-monitoring-solution/
#575
General Support / Re: about housekeeper
June 25, 2015, 12:43:10 PM
What version of NetXMS you are using? It was a known bottleneck and we did a major optimisation in 2.0-M3.
#576
It's known issue – we fixed that already and pushed updated version of the agent installer on the web (version remains the same).
Download agent installer once again and reinstall, it should fix this issue.
#577
General Support / Re: Web Timeout on Linux server
June 24, 2015, 02:22:54 AM
From directory name I assume it's installed by hand. Most likely it will work if you create nxmc.properties in /usr/local/tomcat7/lib/ (next to "catalina.jar", etc.)
#578
Announcements / Re: NetXMS 2.0-M5 released
June 24, 2015, 02:15:19 AM
Nothing is set in stone yet, but we want to release 2.0 in August. RC1 is scheduled for mid-July.
#579
General Support / Re: Web Timeout on Linux server
June 23, 2015, 11:35:37 PM
What servlet container you are using? Tomcat, Jetty, Winston? Is is installed from package?
#580
Announcements / Re: NetXMS 2.0-M5 released
June 23, 2015, 03:13:40 PM
Server installer is not affected – problem was because of missing sqlite.ddr, which is included in server package.
#581
Announcements / Re: NetXMS 2.0-M5 released
June 22, 2015, 12:10:31 PM
Most  likely you don't need it – and it should be completely disabled after upgrade, system should behave exactly as before. However, if for some reason (bug in upgrade procedure, most likely) it's on – server may stop collecting data from older agents (this will be fixed in next release).

Caching is intended for use on unreliable links. When server connects to the agent, complete DCI schedule for this node is sent, then agent collects data on it's own (and keep it in local database, hence new sqlite dependency). When connection is restored, all collected data is sent to server and then processed. Caching can be set globally (not recommended in this release), per node, or per DCI.
#582
Announcements / Re: NetXMS 2.0-M5 released
June 22, 2015, 10:32:33 AM
If DCIs are not collected, please check cache mode setting, it can be set in two places:
1) Global parameter DefaultAgentCacheMode, 1 is on, 2 is off. Check that with "nxdbmget get DefaultAgentCacheMode" or in server settings.
2) Cache mode on the node and DCIs – in node properties and in DCI properties respectively
#583
Announcements / Re: NetXMS 2.0-M5 released
June 22, 2015, 10:22:45 AM
You can download missing sqlite.ddr (both 32 and 64bit versions) here: https://www.dropbox.com/s/to6n0azk3j6qxui/sqlite.zip?dl=0
We will repack installer shortly.

For crashing agents, please add these options to config file and then send us minidump:
CreateCrashDumps = yes
DumpDirectory = c:\path
#584
Native MSSQL driver is windows only, you'll have to use unixODBC.

Install unixODBC-devel package to fix this error.
#585
For 2.x branch you need at least Tomcat7 (Servlet API 3.0) running on JRE7 or newer.