View Single Post

  #2 (permalink)  
Old 10-08-2007, 01:55 AM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,036
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Write a shell script to Check if mysqld is alive. Here is command line version
Code:
mysqladmin -u root -h dbserver1.mycorp.com -p 'MyPASSWORD' ping
And a script:
Code:
#!/bin/bash
mysqladmin -u root -h dbserver1.mycorp.com -p 'MyPASSWORD' ping
if [ $? -ne 0 ]; then
  echo "Send email, mysql not running"
else
 echo "Do nothing everything is working"
fi
done
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote