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

Topics - Marcin

#1
General Support / Maximum open cursors exceeded
February 24, 2016, 11:41:32 AM
Hi Victor,

Since upgrading NetXMS server on Solaris from RC version to 2.0.2 I observe following frequently problem:

[24-Feb-2016 10:33:53.520] [ERROR] SQL query failed (Query = "UPDATE raw_dci_values SET raw_value=?,transformed_value=?,last_poll_time=? WHERE item_id=?"): ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded
ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded
ORA-01000: maximum open cursors exceeded
[24-Feb-2016 10:33:53.520] [ERROR] SQL query failed (Query = "INSERT INTO idata_1899 (item_id,idata_timestamp,idata_value) VALUES (?,?,?)"): ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded
ORA-00604: error occurred at recursive SQL level 1
ORA-01000: maximum open cursors exceeded
ORA-01000: maximum open cursors exceeded

On the Oracle Db side my observation is following:

       SID SQL_TEXT                                                     OPEN_CURSORS USER_NAME
---------- ------------------------------------------------------------ ------------ ------------------------------
       213 INSERT INTO dct_threshold_conditions (threshold_id,group_id,          299 NETXMSOWNER
       202 INSERT INTO dct_threshold_conditions (threshold_id,group_id,          299 NETXMSOWNER
       203 INSERT INTO dct_threshold_conditions (threshold_id,group_id,          299 NETXMSOWNER
       211 INSERT INTO dct_threshold_conditions (threshold_id,group_id,          299 NETXMSOWNER
       201 INSERT INTO dct_threshold_conditions (threshold_id,group_id,          299 NETXMSOWNER
       203 insert into sys.aud$( sessionid,entryid,statement,ntimestamp            1 NETXMSOWNER
       203 SELECT item_id FROM raw_dci_values WHERE item_id=223                    1 NETXMSOWNER
       203 SELECT threshold_id FROM thresholds WHERE item_id=126                   1 NETXMSOWNER
       202 SELECT threshold_id FROM thresholds WHERE item_id=21                    1 NETXMSOWNER
       202 INSERT INTO dct_thresholds (id,table_id,sequence_number,acti            1 NETXMSOWNER
       203 SELECT threshold_id FROM thresholds WHERE item_id=123                   1 NETXMSOWNER
       203 DELETE FROM dc_table_columns WHERE table_id=:1                          1 NETXMSOWNER
       203 SELECT item_id FROM raw_dci_values WHERE item_id=222                    1 NETXMSOWNER
       202 DELETE FROM dci_schedules WHERE item_id=9                               1 NETXMSOWNER
       202 DELETE FROM dci_schedules WHERE item_id=48                              1 NETXMSOWNER
       203 UPDATE dc_tables SET node_id=:1,template_id=:2,template_item            1 NETXMSOWNER
       203 DELETE FROM dci_schedules WHERE item_id=121                             1 NETXMSOWNER
       203 DELETE FROM dci_schedules WHERE item_id=218                             1 NETXMSOWNER
       203 UPDATE items SET node_id=:1,template_id=:2,name=:3,source=:4            1 NETXMSOWNER
       203 INSERT INTO dc_table_columns (table_id,sequence_number,colum            1 NETXMSOWNER
       203 SELECT threshold_id FROM thresholds WHERE item_id=219                   1 NETXMSOWNER
       202 SELECT item_id FROM raw_dci_values WHERE item_id=21                     1 NETXMSOWNER
       203 SELECT item_id FROM raw_dci_values WHERE item_id=117                    1 NETXMSOWNER
       202 DELETE FROM dci_schedules WHERE item_id=73                              1 NETXMSOWNER

SQL_FULLTEXT
--------------------------------------------------------------------------------
INSERT INTO dct_threshold_conditions (threshold_id,group_id,sequence_number,column_name,check_operation,check_value) VALUES (:1,:2,:3,:4,:5,:6)

"INSERT INTO dct_threshold_conditions" is opening maximum allowed number of cursors and blocking further operations.
This seems to be cursor memory leak. Application is opening a cursor and not closing it when it's done.

How to solve this issue? This problem is blocking connections (login-in) from Management Console few hours after restart of NetXMS server.

Regards,
Marcin
#2
Hi,

Is it possible to use ServiceCheck.HTTPS to check status of the service behind normal proxy with login/password?

Best regards,
Marcin
#3
Hi Victor,

First problem:
I noticed a bug after upgrading NetXMS to version 2.0-RC2 on Solaris:

$/opt/netxms/bin $ ./netxmsd
ld.so.1: netxmsd: fatal: libnxagent.so.2: open failed: No such file or directory
Killed

Library is missing in the pkg file. As a workaround I copied this file from the NetXMS agent package.

Second problem:
Management console installed on Windows X86 is reporting following problem just after starting:
"Cannot load MIB file from server: File I/O operation failed"
How to solve this problem?

Best regards,
Marcin
#4
General Support / One table is growing very fast
October 23, 2015, 10:19:07 AM
Hi,

Could you help to identify why table TDATA_ROWS_1178 is growing very fast?

SQL> select count(*) from TDATA_ROWS_1178;

  COUNT(*)
----------
  18189554

Yesterday there was 10 million rows, today it is 18 millions rows.
This table grow by 300MB since yesterday and consumed all available space in tablespace.

SEGMENT_NAME                                                                      SEGMENT_TYPE       size_in_MB
--------------------------------------------------------------------------------- ------------------ ----------
SYS_C0034271                                                                      INDEX                     746
TDATA_ROWS_1178                                                                   TABLE                     624
SNMP_TRAP_LOG                                                                     TABLE                   511.1
SYS_C0034093                                                                      INDEX                     499
TDATA_ROWS_100                                                                    TABLE                     464

Best regards,
Marcin


#5
Hello,

I observe that every day memory consumption of netxmsd is increasing by around 1GB.
After two weeks netxsmd consumed 20GB of physical memory on Solaris system.
Server was restarted 13.07. Two days later memory usage already increased to 4GB:

I'm attaching pmap output.

Best regards,
Marcin
#6
Hi Victor,

Problem:
Due to technical failure, one of the network devices started sending SNMP traps to NetXMS every couple of seconds with information's about problem.
NetXMS is configured to generate an alarm and one of the actions is to send an e-mail to the group of technicians.
As a result NetXMS generated hundreds of emails during a very short period of time.

Question:
How we can limit number of e-mail send by NetXMS in relation to one alarm?
Could we send email only when new alarm is created and not for subsequent alarms with the same key?

Best regards,
Marcin
#7
Hello,

Is it possible to change default event attributes in the filtering script?
Based on the SNMP varbind I would like to modify severity of the event and then create correct alarm.

I tried:
$event->severity = 1;
but I get an error while compiling processing policy rule: "Unknown object's attribute"

I tried also: SetEventParameter($event, severity, 1);
but without success.

Best regards,
Marcin

#8
General Support / Website monitoring issue
April 10, 2015, 02:54:02 PM
Hello,

I have configured ServiceCheck.HTTPS to monitor status of internal web application every minute. It works fine when application is UP (returned value = 0) and when application is shut-down for maintenance reasons (returned value = 2). Unfortunately it does not work if application is overloaded and web page is almost not accessible (rendering web page takes 5-10 seconds).

No matter what timeout value I configure (I tried: 1000, 3000, 5000) NetXMS is not returning any status.
Below is the example history of collected data.
"Timestamp","Value"
"10.04.2015 12:20:23","0"
"10.04.2015 12:09:23","0"
"10.04.2015 12:05:23","0"
"10.04.2015 12:01:23","0"
"10.04.2015 11:55:23","0"
"10.04.2015 11:54:23","0"
"10.04.2015 11:52:23","0"
"10.04.2015 11:51:23","0"
"10.04.2015 11:50:23","0"
"10.04.2015 11:49:23","0"
"10.04.2015 11:48:23","0"
"10.04.2015 11:47:23","0"
"10.04.2015 11:46:23","0"
"10.04.2015 11:45:23","0"
"10.04.2015 11:44:23","0"
"10.04.2015 11:43:23","0"
"10.04.2015 11:42:23","0"
"10.04.2015 11:41:23","0"
"10.04.2015 11:40:23","0"
"10.04.2015 11:39:23","0"
"10.04.2015 11:38:23","0"
"10.04.2015 11:37:23","0"
"10.04.2015 11:36:23","0"
"10.04.2015 11:35:23","0"
"10.04.2015 11:34:23","0"
"10.04.2015 11:33:23","0"
"10.04.2015 11:32:23","0"
"10.04.2015 11:31:23","0"
"10.04.2015 11:30:23","0"

At the beginning it works fine. Checks are executed every minute, but later around 12:00, when website is not responsive at all, timestamp changes from 1 minuted to several minutes.

I'm using NetXMS 2.0-M2.

How this issue can be resolved?

Best regards,
Marcin
#9
Hello,

In event processing rule number 1 I define:
SetEventParameter($event, "WeblogicENV", "TEST");
This event parameter is used in message text for alarm creation (%<WeblogicENV>).
This works fine.

Then I wanted to use the same event parameter defined in filtering script of rule number 1 in the rule number 2.
Unfortunately:
GetEventParameter($event, "WeblogicENV");
returns NULL.

Is it normal that this additional even parameter is lost or maybe I have a mistake somewhere in the code?

Best regards,
Marcin
#10
Hello,

What would be the best way to define an action (send e-mail) for an alarms generated only during specified time frame (between 09:00 and 17:00)? There is a restart of a service during a night, and termination of the alarm when the service is up. In this case an e-mail should not be sent.

The only way is to create a new event processing policy and use filtering script (previous one + new condition)?
If yes, how to do it?
Ex. strftime(%H,$event->timestamp) with "if" statement?

Best regards,
Marcin
#11
General Support / Netxms OracleDB errors
February 12, 2015, 04:48:57 PM
Hello,

After upgrading NetXMS from 1.2.16 to 2.0-M2 I see following errors in the netxms log file:

[12-Feb-2015 14:09:43.618] [ERROR] SQL query failed (Query = "INSERT INTO tdata_records_822 (record_id,row_id,instance) VALUES (?,?,?)"): ORA-00001: unique constraint (NETXMSOWNER.SYS_C0040248) violated
[12-Feb-2015 14:09:43.618] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:10:43.645] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:10:48.485] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:14:17.166] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:14:18.103] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:15:43.556] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:15:48.396] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:19:18.031] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:19:19.029] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:20:43.484] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:20:48.308] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:24:18.945] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:24:19.955] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:25:43.396] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:25:48.219] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:29:19.867] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:29:20.867] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:30:43.325] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:30:48.128] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:34:20.858] [ERROR] Invalid object identifier 116 in event processing policy
[12-Feb-2015 14:34:21.791] [ERROR] Invalid object identifier 116 in event processing policy

and following errors when running check on the database:
[root] $ /opt/netxms/bin/nxdbmgr check
NetXMS Database Manager Version 2.0-M2 Build 8007

Checking database (excluding collected data):
* Checking zone objects...                                            [PASSED]
* Checking node objects...                                            [PASSED]
* Checking interface objects...                                       [PASSED]
* Checking network service objects...                                 [PASSED]
* Checking cluster objects...                                         [PASSED]
* Checking template to node mapping...                                [PASSED]
* Checking object properties...                                       [PASSED]
Invalid object ID 116 used in policy. Delete it from policy? (Y/N) y
* Checking event processing policy...                                 [FIXED ]
* Checking network map links...                                       [PASSED]
Data collection table (TDATA) for node [110] not found. Create? (Y/N)  (Y/N) y
SQL query failed (ORA-02270: no matching unique or primary key for this column-list):
CREATE TABLE tdata_rows_110 (row_id number(20) not null,column_id integer not null,value varchar(255) null,PRIMARY KEY(row_id,column_id),FOREIGN KEY (row_id) REFERENCES tdata_records_110(row_id) ON DELETE CASCADE)
Data collection table (TDATA) for node [192] not found. Create? (Y/N)  (Y/N) y
SQL query failed (ORA-02270: no matching unique or primary key for this column-list):
CREATE TABLE tdata_rows_192 (row_id number(20) not null,column_id integer not null,value varchar(255) null,PRIMARY KEY(row_id,column_id),FOREIGN KEY (row_id) REFERENCES tdata_records_192(row_id) ON DELETE CASCADE)
Data collection table (TDATA) for node [194] not found. Create? (Y/N)  (Y/N) y
SQL query failed (ORA-02270: no matching unique or primary key for this column-list):
CREATE TABLE tdata_rows_194 (row_id number(20) not null,column_id integer not null,value varchar(255) null,PRIMARY KEY(row_id,column_id),FOREIGN KEY (row_id) REFERENCES tdata_records_194(row_id) ON DELETE CASCADE)

During every execution of nxdbmgr the same errors occurs (also for Invalid object ID 116).

Could help in resolving this issue?

Best regards,
Marcin
#12
Hi,

NetXMS was not monitored on development system for several days. During that time oracle DB password has expired:
[04-Dec-2014 09:31:17.278] [ERROR] Unable to establish connection with database (ORA-28002: the password will expire within 5 days)
This issue was not noticed, but it was not the problem itself.

We had a problem with backups of development system as Networker client was failing.
After analysis I found over 32.000 connections from netxmsd towards DB in CLOSE_WAIT status:

153.98.100.55.36421  153.98.100.57.1525   49152      0 49152      0 CLOSE_WAIT
153.98.100.55.35894  153.98.100.57.1525   49152      0 49152      0 CLOSE_WAIT
153.98.100.55.33549  153.98.100.57.1525   49152      0 49152      0 CLOSE_WAIT
153.98.100.55.65128  153.98.100.57.1525   49152      0 49152      0 CLOSE_WAIT
153.98.100.55.60114  153.98.100.57.1525   49152      0 49152      0 CLOSE_WAIT
153.98.100.55.53602  153.98.100.57.1525   49152      0 49152      0 CLOSE_WAIT
153.98.100.55.57421  153.98.100.57.1525   49152      0 49152      0 CLOSE_WAIT
153.98.100.55.33275  153.98.100.57.1525   49152      0 49152      0 CLOSE_WAIT

NetXMS was opening new connection until Solaris 10 reached the limit of open connections.
As a consequence this caused issues with other applications.

I think that some internal limits of connections within NetXMS should be defined to avoid serious problems when DB is not available or not accessible for some time.

Best regards,
Marcin
#13
General Support / Solaris client installaiton problem
November 20, 2014, 04:36:53 PM
Hello,

It seems that new version has different dependencies. I did an upgrade from (working) version 1.2.16 to 1.2.17 and I noticed following problem:
[root] /opt/netxms/bin $ ./nxagentd -D 9
ld.so.1: nxagentd: fatal: libxnet.so.1: version 'SUNW_1.3.1' not found (required by file /opt/netxms/lib/libnetxms.so.1)
ld.so.1: nxagentd: fatal: libxnet.so.1: open failed: No such file or directory
Killed

I noticed following changes:
RADnxagent.1.2.16.sparc.pkg:
[root] /opt/netxms/bin $  pvs /opt/netxms/lib/libnetxms.so.1
        libdl.so.1 (SUNW_0.7);
        libsocket.so.1 (SUNW_0.7);
        libxnet.so.1 (SUNW_1.1);
        libpthread.so.1 (SUNW_1.4);
        libc.so.1 (SUNW_1.22, SUNWprivate_1.1);
        libCstd.so.1 (SUNW_1.1.1);
        libCrun.so.1 (SUNW_1.2);

RADnxagent.1.2.17.sparc.pkg:
[root@] /opt/netxms/bin $ pvs /opt/netxms/lib/libnetxms.so.1
        libm.so.2 (SUNW_1.1);
        libresolv.so.2 (SUNW_2.2.2);
        libdl.so.1 (SUNW_0.7);
        libsocket.so.1 (SUNW_0.7);
        libxnet.so.1 (SUNW_1.3.1);
        libpthread.so.1 (SUNW_1.4);
        libc.so.1 (SUNW_1.22, SUNWprivate_1.1);
        libCstd.so.1 (SUNW_1.1.1);
        libCrun.so.1 (SUNW_1.2);

New version require new libraries:
libm.so.2 (SUNW_1.1); -> available
libresolv.so.2 (SUNW_2.2.2); -> available
and one library in never version:
libxnet.so.1 (SUNW_1.3.1); -> instead of libxnet.so.1 (SUNW_1.1);

This one is not available by default on Solaris SPARC 64bit.
[root] /lib $ pvs /lib/libxnet.so.1
        libxnet.so.1;
        SUNW_1.3;
        SUNW_1.2;
        SUNW_1.1;

It looks like this version of NetXMS is dependent on optional Solaris patch 147002-01 (3-years old one) that has to be installed in Solaris global zone.
Is this dependency really required?

Best regards,
Marcin
#14
General Support / SNMP source port
September 29, 2014, 03:01:52 PM
Hello,

We have three Weblogic domains configured on one system. In each domain there is AdminServer. When we shutdown one or all domains it's not clear which domain was stopped. In SNMP trap log all events looks exactly the same. In case stopping all domains:

23.09.2014 18:34:22   153.9.1.58   scrd   .1.3.6.1.4.1.140.625.0.70   .1.3.6.1.4.1.140.625.100.5 == 'Tue Sep 23 18:34:22 CEST 2014'; .1.3.6.1.4.1.140.625.100.10 == 'AdminServer'
23.09.2014 18:34:22   153.9.1.58   scrd   .1.3.6.1.4.1.140.625.0.70   .1.3.6.1.4.1.140.625.100.5 == 'Tue Sep 23 18:34:22 CEST 2014'; .1.3.6.1.4.1.140.625.100.10 == 'AdminServer'
23.09.2014 18:34:22   153.9.1.58   scrd   .1.3.6.1.4.1.140.625.0.70   .1.3.6.1.4.1.140.625.100.5 == 'Tue Sep 23 18:34:22 CEST 2014'; .1.3.6.1.4.1.140.625.100.10 == 'AdminServer'

Each Weblogic domain is configured separately and it's using it's own port to send SNMP events.
Is it possible to create an Event Processing Policy and use SNMP source port attribute to distinguish environments?

Best regards,
Marcin
#15
Hi,

When server is running in daemon mode, I can't enable debug mode in the Server Console.
When I set "debug 9" nothing happen. There is no verbose logging.

When server is started without "-d" enabling debug mode in Server Console works.

Is it a bug or a feature of NetXMS?
I could not find an answer for this question in the documentation.

Best regards,
Marcin
#16
Hi,

I configured NetXMS with LDAP.
For the new user that was created and synced with LDAP, in the Properties -> System Rights I selected everything (for test purposes).
When I'm logging in as this user (LDAP password is accepted), when I click Alarm Log I get a message:
Cannot open server log "AlarmLog": Access denied
I have the same error for other views.

I don't know if this is related but while doing ldap sync for the first time I got many errors like this:
[19-Aug-2014 16:10:54.639] [ERROR] SQL query failed (Query = "INSERT INTO user_groups (name,system_access,flags,description,guid,ldap_dn,id) VALUES (?,?,?,?,?,?,?)"): ORA-01400: cannot insert NULL into ("NETXMSOWNER"."USER_GROUPS"."DESCRIPTION")
[19-Aug-2014 16:11:54.812] [ERROR] SQL query failed (Query = "INSERT INTO user_groups (name,system_access,flags,description,guid,ldap_dn,id) VALUES (?,?,?,?,?,?,?)"): ORA-01400: cannot insert NULL into ("NETXMSOWNER"."USER_GROUPS"."DESCRIPTION")

What could be the reason of access denied problem?

Best regards,
Marcin
#17
General Support / nxdbmgr dumps core files
July 30, 2014, 11:53:35 AM
Hello,

I did an upgrade of NetXMS from version 1.2.13 to 1.2.15 on Solaris 10. As a consequence I have to upgrade Oracle 11.2.0 database format:
[30-Jul-2014 10:33:53.636] [DEBUG] Successful sync query: "SELECT var_value FROM metadata WHERE var_name='SchemaVersion'" [6 ms]
[30-Jul-2014 10:33:53.636] [ERROR] Your database has format version 307, but server is compiled for version 330

Unfortunately nxdbmgr is not working anymore, it's always dumping core files:
root$ /opt/netxms/bin/nxdbmgr check
NetXMS Database Manager Version 1.2.15 Build 7879

Bus Error (core dumped)

I tried also with version 1.2.14 - error is the same.
Now I reverted back to 1.2.13 and there are no problems:
root$ /opt/netxms/bin/nxdbmgr check
NetXMS Database Manager Version 1.2.13 Build 7863

Checking database (excluding collected data):
* Checking zone objects...                                            [PASSED]
* Checking node objects...                                            [PASSED]
* Checking interface objects...                                       [PASSED]
* Checking network service objects...                                 [PASSED]
* Checking cluster objects...                                         [PASSED]
* Checking template to node mapping...                                [PASSED]
* Checking object properties...                                       [PASSED]
* Checking event processing policy...                                 [PASSED]
* Checking network map links...                                       [PASSED]
Database doesn't contain any errors
Database check completed

Details of core file:
root$ pstack core
core 'core' of 5109:    /opt/netxms/bin/nxdbmgr check
ffffffff7f015808 __1cGConfigNparseTemplate6MpkwpnPNX_CFG_TEMPLATE__b_ (1001c5010, 0, 1001e3bf0, 1001e5db0, ffffffff7f036034, ffffffff7fffb590) + 158
0000000100008e3c main (100000, ffffffff7ffffb08, 100024, 1, 63, 100024000) + a2c
000000010000736c _start (0, 0, 0, 0, 0, 0) + 12c

root$ pmap core
core 'core' of 5109:    /opt/netxms/bin/nxdbmgr check
0000000100000000        448K r-x--  /opt/netxms/bin/nxdbmgr
000000010016E000        328K rwx--  /opt/netxms/bin/nxdbmgr
00000001001C0000        168K rwx--    [ heap ]
FFFFFFFF7C400000        688K r-x--  /lib/sparcv9/libnsl.so.1
FFFFFFFF7C5AC000         64K rwx--  /lib/sparcv9/libnsl.so.1
FFFFFFFF7C5BC000         32K rwx--  /lib/sparcv9/libnsl.so.1
FFFFFFFF7C600000        152K r-x--  /lib/sparcv9/libelf.so.1
FFFFFFFF7C726000         16K rwx--  /lib/sparcv9/libelf.so.1
FFFFFFFF7C800000       1272K r-x--  /lib/sparcv9/libc.so.1
FFFFFFFF7CA3E000         72K rwx--  /lib/sparcv9/libc.so.1
FFFFFFFF7CA50000          8K rwx--  /lib/sparcv9/libc.so.1
FFFFFFFF7CB00000        584K r-x--  /lib/sparcv9/libm.so.2
FFFFFFFF7CC00000         64K rwx--
FFFFFFFF7CC90000         32K rwx--  /lib/sparcv9/libm.so.2
FFFFFFFF7CD00000         64K r-x--  /usr/lib/sparcv9/libCrun.so.1
FFFFFFFF7CE0E000         16K rwx--  /usr/lib/sparcv9/libCrun.so.1
FFFFFFFF7CE12000         16K rwx--  /usr/lib/sparcv9/libCrun.so.1
FFFFFFFF7CF00000       1680K r-x--  /usr/lib/sparcv9/libCstd.so.1
FFFFFFFF7D100000          8K r-x--  /platform/sun4u-opl/lib/sparcv9/libc_psr.so.1
FFFFFFFF7D1A2000         64K rwx--  /usr/lib/sparcv9/libCstd.so.1
FFFFFFFF7D200000       1952K r-x--  /opt/netxms/lib/libcrypto.so.1.0.0
FFFFFFFF7D400000         64K rwx--
FFFFFFFF7D4E6000        144K rwx--  /opt/netxms/lib/libcrypto.so.1.0.0
FFFFFFFF7D50A000         16K rwx--  /opt/netxms/lib/libcrypto.so.1.0.0
FFFFFFFF7D600000         56K r-x--  /lib/sparcv9/libsocket.so.1
FFFFFFFF7D700000         24K rwx--
FFFFFFFF7D70E000         16K rwx--  /lib/sparcv9/libsocket.so.1
FFFFFFFF7D800000          8K r-x--  /lib/sparcv9/libdl.so.1
FFFFFFFF7D902000          8K rwx--  /lib/sparcv9/libdl.so.1
FFFFFFFF7DA00000          8K r-x--  /lib/sparcv9/libkstat.so.1
FFFFFFFF7DB02000          8K rwx--  /lib/sparcv9/libkstat.so.1
FFFFFFFF7DC00000         88K r-x--  /usr/lib/sparcv9/libz.so.1
FFFFFFFF7DD00000          8K rwx--
FFFFFFFF7DD14000          8K rwx--  /usr/lib/sparcv9/libz.so.1
FFFFFFFF7DE00000        288K r-x--  /lib/sparcv9/libresolv.so.2
FFFFFFFF7DF00000          8K rwx--
FFFFFFFF7DF48000         24K rwx--  /lib/sparcv9/libresolv.so.2
FFFFFFFF7DF4E000          8K rwx--  /lib/sparcv9/libresolv.so.2
FFFFFFFF7E000000         16K r-x--  /usr/lib/sparcv9/libkvm.so.1
FFFFFFFF7E100000          8K rwx--
FFFFFFFF7E104000          8K rwx--  /usr/lib/sparcv9/libkvm.so.1
FFFFFFFF7E200000        584K r-x--  /opt/netxms/lib/libnxsqlite.so.1.0.0
FFFFFFFF7E300000          8K rwx--
FFFFFFFF7E390000         24K rwx--  /opt/netxms/lib/libnxsqlite.so.1.0.0
FFFFFFFF7E400000         64K r-x--  /opt/netxms/lib/libnxtre.so.5.0.0
FFFFFFFF7E500000          8K rwx--
FFFFFFFF7E50E000          8K rwx--  /opt/netxms/lib/libnxtre.so.5.0.0
FFFFFFFF7E600000        152K r-x--  /opt/netxms/lib/libnxexpat.so.1.0.0
FFFFFFFF7E700000          8K rwx--  /lib/sparcv9/libxnet.so.1
FFFFFFFF7E724000          8K rwx--  /opt/netxms/lib/libnxexpat.so.1.0.0
FFFFFFFF7E800000         64K r-x--  /opt/netxms/lib/libnxsnmp.so.1.0.0
FFFFFFFF7E900000         16K r-x--  /lib/sparcv9/libpthread.so.1
FFFFFFFF7E90E000         16K rwx--  /opt/netxms/lib/libnxsnmp.so.1.0.0
FFFFFFFF7EA00000        136K r-x--  /opt/netxms/lib/libnxsrv.so.1.0.0
FFFFFFFF7EB00000          8K rwx--
FFFFFFFF7EB20000         16K rwx--  /opt/netxms/lib/libnxsrv.so.1.0.0
FFFFFFFF7EC00000         40K r-x--  /opt/netxms/lib/libnxmap.so.1.0.0
FFFFFFFF7ED00000          8K rwx--
FFFFFFFF7ED08000          8K rwx--  /opt/netxms/lib/libnxmap.so.1.0.0
FFFFFFFF7EE00000         56K r-x--  /opt/netxms/lib/libnxdb.so.1.0.0
FFFFFFFF7EF00000          8K rwx--
FFFFFFFF7EF0C000          8K rwx--  /opt/netxms/lib/libnxdb.so.1.0.0
FFFFFFFF7EF0E000          8K rwx--  /opt/netxms/lib/libnxdb.so.1.0.0
FFFFFFFF7F000000        256K r-x--  /opt/netxms/lib/libnetxms.so.1.0.0
FFFFFFFF7F100000          8K rwx--
FFFFFFFF7F13E000         32K rwx--  /opt/netxms/lib/libnetxms.so.1.0.0
FFFFFFFF7F146000         80K rwx--  /opt/netxms/lib/libnetxms.so.1.0.0
FFFFFFFF7F200000          8K rwx--
FFFFFFFF7F300000          8K rw---
FFFFFFFF7F400000          8K rw---
FFFFFFFF7F500000          8K rwx--
FFFFFFFF7F600000        240K r-x--  /lib/sparcv9/ld.so.1
FFFFFFFF7F700000          8K rwx--
FFFFFFFF7F73C000         24K rwx--  /lib/sparcv9/ld.so.1
FFFFFFFF7F792000          8K rwx--
FFFFFFFF7FFF6000         40K rw---    [ stack ]
         total        10528K

Could you help me with this problem?

Best regards,
Marcin
#18
Hello,

I was using NetXMS server version 1.2.13 installed on Solaris 10 with Oracle as a backend DB. Password for Oracle connection in netxsmsd.conf was encrypted using parameter DBEncryptedPassword. Now after upgrade to 1.2.15 DBEncryptedPassword is not working anymore. I have error:
[ERROR] Unable to establish connection with database (ORA-01005: null password given; logon denied)
When I replace DBEncryptedPassword with DBPassword (unencrypted password) it works.
Seems to be a bug in the new version.

/Marcin