Dell server hardware monitoring, use omreport appear object not found error solution

First, monitor alarm

Login target host, see dataeng service

[root@push-5-217 src]# systemctl status dataeng
● dataeng.service - LSB: Systems Management Data Engine
   Loaded: loaded (/etc/rc.d/init.d/dataeng; bad; vendor preset: disabled)
   Active: active (running) since 三 2019-08-21 10:44:30 CST; 12min ago
     Docs: man:systemd-sysv-generator(8)
  Process: 15114 ExecStop=/etc/rc.d/init.d/dataeng stop (code=exited, status=0/SUCCESS)
  Process: 15158 ExecStart=/etc/rc.d/init.d/dataeng start (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/dataeng.service
           ├─15245 /opt/dell/srvadmin/sbin/dsm_sa_datamgrd
           ├─15426 /opt/dell/srvadmin/sbin/dsm_sa_datamgrd
           ├─15442 /opt/dell/srvadmin/sbin/dsm_sa_eventmgrd
           └─15467 /opt/dell/srvadmin/sbin/dsm_sa_snmpd

8月 21 10:44:23 push-5-217.hlsms systemd[1]: Starting LSB: Systems Management Data Engine...
8月 21 10:44:23 push-5-217.hlsms dataeng[15158]: Starting Systems Management Data Engine:
8月 21 10:44:28 push-5-217.hlsms dataeng[15158]: Starting dsm_sa_datamgrd: [  确定  ]
8月 21 10:44:29 push-5-217.hlsms dataeng[15158]: Starting dsm_sa_eventmgrd: [OK] 
. 8 dated 21 is  10 : 44 is : 30 Push- . 5 - 217 .hlsms dataeng [ 15158 ]: Starting dsm_sa_snmpd: [OK] 
. 8 dated 21 is  10 : 44 is : 30 Push- . 5 - 217 .hlsms systemd [ 1 ]: Started LSB: the Data Engine Management Systems.

Service normal, test commands

[root@push-5-217 src]# omreport chassis memory
Memory Information

Error : Memory object not found

After restarting the service, and then test, still returns an error,

Second, to see whether the signal reached the upper limit

1, view the current limit signal is provided

[@ Push- the root . 5 - 217 the src] # the ipcs - SL

 --------- ----------- semaphore limit 
the maximum number of array = 128 
the maximum number of each array semaphore = 250 
the maximum number of semaphore system = 32,000 
per call semaphore maximum number of operations = 32 
semaphore maximum = 32767

The maximum number of array 128

2, the signal has been used to view

[@ Push- the root . 5 - 217 the src] # the ipcs - US

 --------- ----------- state semaphore 
used array = 128 
signal assigned number = 140

It can be seen has been used 128 array, the limit has been reached.

3, see who used the annunciator

[root @ Push- 5 - 217 src] # ipcs - the p-

 --------- ----------- message queue PID 
msqid lrpid owner LSPID     

 -------- shared memory creator / last modified ---------- PID 
shmid owner LPID CPID       
65536       zabbix      17461       15977 

 

4, upper limit value setting modification signal

[root@push-5-217 src]# cat /proc/sys/kernel/sem
250     32000   32      128

Current setting value 128

[root@push-5-217 src]# sysctl -w kernel.sem="250 32000 100 256"
kernel.sem = 250 32000 100 256
[root@push-5-217 src]# cat /proc/sys/kernel/sem
250     32000   100     256

Revised to 256

250      32000    100      256 
[Push the root @ - . 5 - 217 the src] # the ipcs - SL

 --------- ----------- semaphore limit 
the maximum number of array = 256 
of each array The maximum number of semaphore = 250 
the maximum number of semaphore system = 32,000 
per semaphore maximum number of operations invoked = 100 
semaphore maximum = 32767

At this point, the signal is the upper limit has been expanded to 256, and then run the command

[root@push-5-217 src]# omreport chassis nics
Network Interfaces Information

Physical NIC Interface(s)
Index             : 0
Interface Name    : em1
Vendor            : Broadcom Corporation
Description       : NetXtreme BCM5720 Gigabit Ethernet PCIe
Connection Status : Connected
Slot              : Embedded

Index             : 1
Interface Name    : em2
Vendor            : Broadcom Corporation
Description       : NetXtreme BCM5720 Gigabit Ethernet PCIe
Connection Status : Connected
Slot              : Embedded

Index             : 2
Interface Name    : em3
Vendor            : Broadcom Corporation
Description       : NetXtreme BCM5720 Gigabit Ethernet PCIe
Connection Status : Disconnected
Slot              : Embedded

Index             : 3
Interface Name    : em4
Vendor            : Broadcom Corporation
Description       : NetXtreme BCM5720 Gigabit Ethernet PCIe
Connection Status : Disconnected
Slot              : Embedded

Successfully acquired the hardware information.

 

Guess you like

Origin www.cnblogs.com/sky-cheng/p/11387519.html
Recommended