Operating System - HP-UX
1846597 Members
2287 Online
110256 Solutions
New Discussion

Re: Chassis Hardware Status

 
SOLVED
Go to solution
Olivier Dumas
New Member

Chassis Hardware Status

Hello,

I have several servers of various types (RP2470, RP5430 and RP8400) for which I would like to get information about hardware status (Led Status, component temperatures, faulty disks, etc.)

I know that some of this information can be seen on the GSP/MP console, but I would like to automatically collect such informations on all the servers to make a daily checklist. Going to the console is thus not the right solution, I believe.

Is there a way for me to get those informations using one or several HP/UX command(s) ?

Thanks a lot.
Olivier.
5 REPLIES 5
Steven E. Protter
Exalted Contributor

Re: Chassis Hardware Status

EMS kind of does that, and by default if installed on 11.11 will provide you warning messages only when something is wrong.

Example, while fiddling around, I accidently unplugged a fan on my sandbox server. Next morning, there was an EMS message in the root mailbox. Redirect that, and you've got notification.

There is a new product called ISEE, which does that even better but is not released. They just started a forum about it and you can learn more about it there.

http://forums.itrc.hp.com/cm/FamilyHome/1,,302,00.html

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Ravi_8
Honored Contributor

Re: Chassis Hardware Status

Hi Olivier

I use LAN console for these purposes . I never get into server room unless there is a hardware problem
never give up
Olivier Dumas
New Member

Re: Chassis Hardware Status

Thanks for the help, but it doesn't completely answer my point.

I wish to make snapshots of my server hardware status on a daily basis, for tracking purpose. For instance, on Solaris Servers, I automatically execute commands such as 'prtdiag', 'lom', 'healthck', etc. to get information about the servers, and format the result in a easily readable text file.
Those commands give me information such as 'CPU1 temperature is 57??C', 'Fan number 1 is rotating at 62% of it's max speed' or 'Alert Led is OFF'

The point is really to have shell commands to get the hardware status, so that the snapshot of a server can be easily and automatically created. I don't know if this can be done on HP hardware, though.

Olivier.
Carlo Montanari
Advisor
Solution

Re: Chassis Hardware Status

echo "selall; info; infolog" | /usr/sbin/cstm
Olivier Dumas
New Member

Re: Chassis Hardware Status

Excellent, This is exactly the kind of information I wanted. Thanks a lot.