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

#3961
General Support / Re: recurring errors
February 19, 2014, 12:02:23 PM
Yes. Drop all tables from database and then initialize it with command

nxdbmgr init c:\netxms\lib\sql\dbinit_mssql.sql

Best regards,
Victor
#3962
General Support / Re: Node Name in maps
February 19, 2014, 12:00:22 PM
Hi!

Can you share a screenshot?

Best regards,
Victor
#3963
General Support / Re: Syslog times
February 19, 2014, 11:59:42 AM
Hi!

Similar problem was reported on Russian forum as well. It seems that NetXMS syslog server cannot write incoming messages to database fast enough. I'll try to do load test in my lab and hopefully fix that.

Best regards,
Victor
#3964
Announcements / Re: NetXMS 1.2.12 released
February 19, 2014, 11:57:05 AM
Any help with documentation is very welcome :) You can edit manual in wiki (I'll move it to pdf then), or just create separate articles about how to configure things.

Best regards,
Victor
#3965
General Support / Re: netxms with oracle 10+ backend
February 19, 2014, 11:55:27 AM
For Oracle you have to create database user manually (and this will create schema) and choose "existing database" option.

If you are using InstantClient you should specify Oracle connection string in DBServer parameter in form //server_ip/service_name

To do initialization manually, follow these steps:

1. Connect to Oracle server with sqlplus as sysdba:


C:\Source\NetXMS\x64\debug>sqlplus sys/admin@//192.168.64.3 as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Wed Feb 19 11:41:37 2014

Copyright (c) 1982, 2010, Oracle.  All rights reserved.


Connected to:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production

SQL>


2. Create user and grant necessary rights:


SQL> create user netxms identified by netxms;

User created.

SQL> grant create session to netxms;

Grant succeeded.

SQL> grant resource to netxms;

Grant succeeded.

SQL> grant create view to netxms;

Grant succeeded.

SQL>


3. Set correct values in netxmsd.conf. In my case it will be


DBDriver = oracle.ddr
DBServer = //192.168.64.3/XE

DBLogin = netxms
DBPassword = netxms


4. Initialize database:


C:\Source\NetXMS\x64\debug>nxdbmgr init ..\..\sql\dbinit_oracle.sql
NetXMS Database Manager Version 1.2.12 Build 7861

Initializing database...
Database initialized successfully

C:\Source\NetXMS\x64\debug>


Also, it seems that initialization script shipped with NetXMS installer may contain errors and database initialization will fail with "cannot insert NULL" error. In that case, please use attached initialization script.

Best regards,
Victor
#3966
General Support / Re: recurring errors
February 18, 2014, 08:17:48 PM
I think that rebuild database is easiest fix here.

Best regards,
Victor
#3967
General Support / Re: recurring errors
February 18, 2014, 05:03:07 PM
Hi!

Looks like lot of data tables are missing. Is it new setup or errors appear after upgrade?

Best regards,
Victor
#3968
Hi!

Try to remove libstrophe.so* from previous version before build. Sometimes linker takes already installed library from installation prefix instead of freshly built in source tree.

Best regards,
Victor
#3969
General Support / Re: Upgrade from 1.2.10 to 1.2.12
February 18, 2014, 02:27:58 PM
Debian 6 binaries available at https://www.netxms.org/apt/dists/squeeze/main/

Best regards,
Victor
#3970
Announcements / Re: NetXMS 1.2.12 released
February 18, 2014, 02:27:42 PM
Debian 6 binaries available at https://www.netxms.org/apt/dists/squeeze/main/

Best regards,
Victor
#3971
General Support / Re: Upgrade from 1.2.10 to 1.2.12
February 18, 2014, 02:21:20 PM
Version 1.2.12 build for Debian 7. I'll publish deb files for Debian 6 shortly.

Best regards,
Victor
#3972
Announcements / Re: NetXMS 1.2.12 released
February 18, 2014, 02:20:40 PM
Yes, NetXMS 1.2.12 built on Debian 7 (wheezy). I'll publish Debian 6 build shortly as it seems that there are still many Debian 6 installations.

Best regards,
Victor
#3973
Announcements / Re: NetXMS 1.2.12 released
February 17, 2014, 07:26:20 PM
Hi!

Try to add --disable-xmpp to configure as a workaround. I'll check what the problem is in the meantime.

Best regards,
Victor
#3974
Поставьте знак > перед IP адресом - тогда будут фильтроваться объекты с указанным IP, независимо от имени.
#3975
Общие вопросы / Re: netxms snmp table
February 17, 2014, 06:33:37 PM
Я посмотрел MIB - там не используется какой-то стандартный формат:

A date-time specification.

            field  octets  contents                  range
            -----  ------  --------                  -----
              1      1-2   year*                     0..65536
              2       3    month                     1..12
              3       4    day                       1..31
              4       5    hour                      0..23
              5       6    minutes                   0..59
              6       7    seconds                   0..60
                           (use 60 for leap-second)
              7       8    deci-seconds              0..9
              8       9    direction from UTC        '+' / '-'
              9      10    hours from UTC*           0..13
             10      11    minutes from UTC          0..59

            * Notes:
            - the value of year is in network-byte order
            - daylight saving time in New Zealand is +13

Так что надо будет писать transformation script на эту колонку.