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

#5881
General Support / Re: 1.1.4 database upgrade error
September 12, 2011, 03:27:05 PM
Please execute manually the following query:

ALTER TABLE business_services DROP CONSTRAINT DF__business___paren__4B0D20AB;

and then run upgrade again.

Best regards,
Victor
#5882
Announcements / Re: NetXMS 1.1.4 released
September 12, 2011, 10:32:17 AM
It was marked as private by reporter. It was about comment area on object overview page in new console - for large comments, scroll bars does not appear.

Best regards,
Victor
#5883
General Support / Re: db upgrade 1.1.4
September 11, 2011, 10:49:21 PM
Yes, unfortunately there is a bug in MySQL driver in 1.1.4. I'll try to made a patch tomorrow. Other DB engines should work fine. I do most of the development using Oracle and PostgreSQL, and at some point forgot to make necessary tests at MySQL.

Best regards,
Victor
#5884
General Support / Re: db upgrade 1.1.4
September 11, 2011, 10:15:07 PM
I have replicated this issue on my system. Looks like a bug in MySQL driver. I'll post a patch when I fix it.

Best regards,
Victor
#5885
General Support / Re: db upgrade 1.1.4
September 11, 2011, 10:02:05 PM
If you run netxmsd.exe from command line, you should omit -d switch, like this:

netxmsd.exe -D 9

Best regards,
Victor
#5886
General Support / Re: db upgrade 1.1.4
September 11, 2011, 09:29:57 PM
You should not initialize database if it already contains data. Initialization is for fresh installation on empty database.

Generally I do not recommend to use SQLite in production. It has both performance and upgrade issues, although performance can be insufficient only for relatively large installations. Upgrade problems are related to the fact that SQLite does not support DROP COLUMN operation - so if database upgrade requires column removal from the table, it will fail. It is possible to do upgrade manually in these cases, but it is time consuming and requires digging into the source code of nxdbmgr to see what SQL queries should be executed.

Best regards,
Victor
#5887
General Support / Re: db upgrade 1.1.4
September 11, 2011, 08:21:52 PM
So, you have MySQL database for 1.0.12 and want to upgrade it to 1.1.4? It should be possible to done it in place. Just install 1.1.4, point it to appropriate database, and run database upgrade. If it shows any error, please send me log/screenshot of nxdbmgr upgrade execution.

Best regards,
Victor
#5888
General Support / Re: version 1.1.4
September 11, 2011, 08:13:31 PM
Is there anything in the logs? Also, try to start netxmsd.exe from command line in debug mode (netxmsd.exe -D 9) and look for debug messages.

Best regards,
Victor
#5889
General Support / Re: db upgrade 1.1.4
September 11, 2011, 08:11:37 PM
What is your production DB engine?
#5890
General Support / Re: db export
September 11, 2011, 06:15:56 PM
Hi!

DB export uses built-in sqlite engine to create export file. It works with all supported DB engines. What exact file it cannot found?

Best regards,
Victor
#5891
General Support / Re: system requierments
September 11, 2011, 03:55:49 PM
Hi!

On Windows, it is Windows Server 2003 or Windows XP, no specific requirements for service packs.

Best regards,
Victor
#5892
Announcements / NetXMS 1.1.4 released
September 11, 2011, 03:17:44 PM
Hi all!

NetXMS version 1.1.4 is out. Changes from previous release:


- Implemented named parameters for events
- Added integration script for HP EVA disk arrays
- Added driver for Netscreen firewalls
- Usage of DNS names instead of IP address for defining primary
  communication address is now supported (for better support of nodes with
  dynamic IPs)
- New MIBs added: ATM-TC-MIB, CISCO-BRIDGE-EXT-MIB, CISCO-IF-EXTENSION-MIB,
  CISCO-L2L3-INTERFACE-CONFIG-MIB, CISCO-PRIVATE-VLAN-MIB,
  CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB, DVMRP-MIB, IGMP-MIB, IPV6-TC,
  RAPID-CITY-BAY-STACK, RC-MLT-MIB
- Mobile client for Android introduced
- Many small improvements in management console
- Fixed some problems with database export/import
- Fixed issues: #328, #329, #330

Best regards,
Victor
#5893
General Support / Re: Need IBM storage MIB
September 11, 2011, 01:47:49 PM
Looks like you need these MIBs: http://www.oidview.com/mibs/1123/md-1123-1.html. At least, trap .1.3.6.1.4.1.1123.4.500.2 is defined in SM10-R2-MIB.

Best regards,
Victor
#5894
It's not the trap receiver, but event processing. Currently event's message size limited to 255 characters. Because default event just put everything into message it gets truncated. Usually you will create separate events for traps of interest, and you can carry trap arguments as event parameters, and then use them in actions, for example, without length limitations.

Best regards,
Victor
#5895
Hi!

No. it's not possible to match traps with same OID to different events. However, you can do additional matching in event processing policy using scripts, and process same event differently depending on trap parameter values.

Best regards,
Victor