AIX Health Check


 
Thread Tools Search this Thread
Operating Systems AIX AIX Health Check
Prev   Next
# 9  
Old 07-13-2015
Quote:
Originally Posted by Adnans2k
Thank you so much for your support I appreciate it.

But just because I'm new, can anyone recommend any preferred sites or youtube channels where i can learn scripting to get these automated.

Youtube does have a few videos on scripting if you just search for "bash scripting" or "shell scripting" and you can find some 101 online classes. There is nothing that I've seen focused on system monitoring (I didn't see specified what you need to monitor so I assume system)

something I keep on me is a book called "pro bash scripting" just in case I get stuck and need a quick reference. (this book often goes missing because other people like it as well)

One thing to note, since your learning scripting, I personally wouldn't start with monitoring "performance"
- Reason: shell scripting can be a bit tricky at first, a small mistake and you can run into a loop, where the system resources are being consumed due to a bad code in the script. (maybe not the best example there but once you start making mistakes, you'll see what I mean)

I would suggest with using the commands manually and understanding what each one does first. iostat and vmstat are my preference as bakunin mentioned.

If they are just asking you for report summary's on the servers usage, lpar2rrd as mentioned, is a great way to give them just that.
- Check out their site. bit tricky at times to setup, but once you finish management teams love it. plus they can check it whenever they want without asking you for a report.

I also do run nmon reports as well since it is more detailed (no one other than myself reviews these).

One of my personal fav. I view once every 6 months (if I can) is "HMCViewer"


for learning AIX, there is a sticky on the AIX page:

AIX Links



Before monitoring "performance" understanding the system and how it works is the biggest key. without this its more like building a house from the roof down.

IBM red books are free and very useful.

Hope this helps.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Health check report

Hi Team, I am writing a small script in that I want collect all servers of /opt and /stage. Below is my small script #!/bin/ksh #checking Media server opt_Disk_Space_logs myclient=`cat media_server.txt` > opt_logs.txt printf " Server Name\tsize\tused\tavail\tcapacity\tMounted... (12 Replies)
Discussion started by: bashi77
12 Replies

2. Shell Programming and Scripting

Script to check the health of a database

need a script to check the health of a session server database. It must read the data base and send an alert if the database is unavailable. If its unavailable, we will want to bring down the database listener to force failover. can u guyz help me in doing this. what information do i need... (1 Reply)
Discussion started by: remo999
1 Replies

3. Shell Programming and Scripting

Daily health check script

Hi I am still learning how to write shell scripts, so I started to write a script like this: #!/bin/sh date echo outputOK () { echo $1 "" } outputOK () { echo $1 "" } for vol in `/usr/bin/grep -E 'hfs|vxfs|nfs|cifs' /etc/fstab | egrep -v '^#' | awk '{ print $3 }'` do if... (7 Replies)
Discussion started by: fretagi
7 Replies

4. HP-UX

HP-UX Health Check

Hi Experts, I want to check health of hp-ux box. Basically I want to check if there are possibilities of network/memory/cpu bottleneck? Are there are any commands available other than glance in hp-ux for the same? (11 Replies)
Discussion started by: sai_2507
11 Replies

5. Shell Programming and Scripting

Health check script

There are 3 servers . I want to fire commands df -kh and mpstat -P ALL on those individual servers and retrieve particular values to genrate reports. This part is almost done. But i am facing issue when i need to compile the reports from all three servers on to one server in order to generate a... (1 Reply)
Discussion started by: pratikm23
1 Replies

6. AIX

AIX Health Check script

Hi Everyone, Can you please help me put together a aix health check script that will check the status of CPU,Memory,Adapter, Filesystems (threshold 80%) and Disks.Im thinking of deploying a script to gather the required data in all the 22 servers and probably send out a mail if anything needs... (3 Replies)
Discussion started by: R!C
3 Replies

7. Shell Programming and Scripting

Health check script

Hi, I have a server type(A group of AIX,HP-UX and Linux servers running with different appn) in which i need to do health check(memory,cpu,h/w etc). I am planning to automate the same. Please help me out in writing the same. Thanks Renjesh Raju (9 Replies)
Discussion started by: Renjesh
9 Replies

8. Solaris

sun server health check

do anybody has a procedure for daily weekley monthly health check for SUN server with solaris OS?? (5 Replies)
Discussion started by: mm00123
5 Replies

9. AIX

AIX Health Check

Hi All, I would like to know if there is a downloadable AIX health check script available from IBM that would print a report of a servers health status. I've been working on a number of Sun Solaris servers and Sun provide a sun checkup script which can give you an ORI figure as well as a list... (3 Replies)
Discussion started by: backslash
3 Replies

10. HP-UX

check health

Dear Gentelmen I need command for display to me the following statement: -battery state -The application if working or not -The cpu is working or not -The power supply is working or not -The Data base is workig or not (2 Replies)
Discussion started by: magasem
2 Replies
Login or Register to Ask a Question