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

#3931
Скрипт должен быть таким:


return %(true, substr($1,1,2));


Ну и это в принципе не обязательно, все параметры FileSystem.* понимают и формат вида C:\
#3932
Announcements / Re: NetXMS 1.2.12 released
February 20, 2014, 07:45:39 PM
There are two workarounds:
1. use built-in "admin" account - it always has all access rights;
2. Assign access rights directly in database. To do so, stop NetXMS server, then execute query like this:

UPDATE users SET system_access=system_access+134217728 WHERE id=insert_user_id_here

and start server.

Best regards,
Victor
#3933
General Support / Re: Bind - IP Segemnts
February 20, 2014, 06:54:34 PM
Yes, seems like a bug. I'll fix it in 1.2.13 release.

Best regards,
Victor
#3934
Announcements / Re: NetXMS 1.2.12 released
February 20, 2014, 06:45:27 PM
Quote from: Dani@M3T on February 19, 2014, 10:18:56 PM
I just updated to V1.2.12 (on linux 64bit from sources). When I want to upload a new image to the Image Library, I get the error 'Access denied'. I checked then the user group for the new permission 'Manage Image Library', but there is no such item in the list (in java console). See attached printscreen.

Yes, seems that GUI update was forgotten. We will fix it in next patch release.

Best regards,
Victor
#3935
General Support / Re: Windows layout
February 19, 2014, 02:51:54 PM
Hi!

You can drag tabs around using tab header. See this: https://www.netxms.org/documentation/userguide/management-console.html#rearranging-views

Best regards,
Victor
#3936
General Support / Re: netxms with oracle 10+ backend
February 19, 2014, 12:47:58 PM
You have to install Oracle client manually because it's not an open source software and there are no package in Debian repository for it. I recommend using Instant Client (http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html) version 11.2.0.4.0. Recommended location - /opt/instantclient_11_2.

Best regards,
Victor
#3937
Just for information - 1.2.12 available as wheezy build (on web site download page and at https://www.netxms.org/apt/dists/wheezy/main/) and as squeeze build (at https://www.netxms.org/apt/dists/squeeze/main/).
#3938
General Support / Re: Line Graph X-Axis Labels
February 19, 2014, 12:08:20 PM
It should be like this. Attached is an example dashboard from my system showing line charts for different periods. Can you share a screenshot how it looks like on your system?

Best regards,
Victor
#3939
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
#3940
General Support / Re: Node Name in maps
February 19, 2014, 12:00:22 PM
Hi!

Can you share a screenshot?

Best regards,
Victor
#3941
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
#3942
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
#3943
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
#3944
General Support / Re: recurring errors
February 18, 2014, 08:17:48 PM
I think that rebuild database is easiest fix here.

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