Operating System - Linux
1755609 Members
3357 Online
108836 Solutions
New Discussion юеВ

similar to HP-UX Event Monitoring Service

 
SOLVED
Go to solution
Ratzie
Super Advisor

similar to HP-UX Event Monitoring Service

Does RedHat have something similar to what HP-UX has for monitoring hardware.

I would like to set it up on my linux boxes, that EMS has saved my butt a couple of times already on my HP systems...
4 REPLIES 4
Robert Binkhorst
Trusted Contributor
Solution

Re: similar to HP-UX Event Monitoring Service

Hi,

If you're using HP hardware (DL*, etc) you can use Insight Manager 7.

Use this link to find your hardware/os version:
http://h18000.www1.hp.com/support/files/server/us/index.html

This link shows an example of the packages to install for AS 3.0:
http://h18000.www1.hp.com/support/files/server/us/locOsCat/101_74.html

HTH,

Robert
linux: the choice of a GNU generation
Steven E. Protter
Exalted Contributor

Re: similar to HP-UX Event Monitoring Service

There is nothing build into the OS.

What I have done is scan the /var/log/messages and other log files for important messages and send an email to my cell phones mail account when trouble is detected.

err=$(cat /var/log/messages | grep keyword | wc -l)

if [ $err -ge 1 ]
then
#send the email
fi

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
I.Delic
Super Advisor

Re: similar to HP-UX Event Monitoring Service

Hi,

They are a lot of tools for this job,

Check this link i hoop it is good one
http://bb4.com/index.html

Succes

Idriz
Ratzie
Super Advisor

Re: similar to HP-UX Event Monitoring Service

Thanks