1752794 Members
5861 Online
108789 Solutions
New Discussion юеВ

Re: Daily system checks

 
SOLVED
Go to solution
unixadmin_1
Frequent Advisor

Daily system checks

Hi,

I am new to unix admin can any one explain me about daily system check tasks, what kind of reports should i generate with these tasks and to whom i need to report. Please let me know as quick as possible.

Thank you.
9 REPLIES 9
Ivan Krastev
Honored Contributor

Re: Daily system checks

Normally check syslog file(s) for any errors/fails messages. You don't have to report to someone - just fix the issues.

regards,
ivan
Jeeshan
Honored Contributor

Re: Daily system checks

system checks includes like

1. syslog for any error.
2. event.log for any hardware error.
3. MP event log checking.
4. Disk utilization etc.

you can create a script which will check those events periodically and any error found will send you mail or SMS.
a warrior never quits
Jeeshan
Honored Contributor

Re: Daily system checks

you didn't assigned any points in our earlier threads?

do u know how to assign points?
a warrior never quits
Md. Farhan A Azam
Trusted Contributor

Re: Daily system checks

Hi You may use these commands for system checkup....

#top
#bdf
#sar 5 20
#./kmeminfo (if kmeminfo is installed)
#tail -1000 /var/adm/syslog/syslog.log |more
#vmstat 5 10
#dmesg
Torsten.
Acclaimed Contributor

Re: Daily system checks

You may check soooo many things - but if you have many servers, one day is not enough to do the same procedure on each ...

I would keep an eye on roots mailbox for messages from the diags or better configure your email as recipient.

If you have add. monitoring software like ISEE or SIM you can check this for the status.

Anyway, you can start with check if the server is up and searching the syslog

;-)

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Avinash20
Honored Contributor

Re: Daily system checks

Hi,

You could refer to the following itrc doc which is similar to your

http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1055010
"Light travels faster than sound. That's why some people appear bright until you hear them speak."
Raj D.
Honored Contributor

Re: Daily system checks

Also dont forget to check the load factor of the system,
Quick checkin the load would ensure everything seems to be ok,
If the load goes more than 1 , or ~1+ ,~2,~3,~4 value ,you need to check who is running what processes and that might slow down the system significantly and users may compalain saying their jobs are running slower than usual speed.

Example: [ This is normal load of a 16cpu/32gb system, running mcsg pkgs: 0.17 ]

# uptime 1:05pm up 170 days, 10:27, 24 users, load average: 0.17, 0.17, 0.17


Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
Md. Farhan A Azam
Trusted Contributor
Solution

Re: Daily system checks

Hi, Don't forgot to assign the points
unixadmin_1
Frequent Advisor

Re: Daily system checks

Thanks