nixCraft Linux Forum

nixCraft

Linux Tech Support Forum

Bash script for checking mysql processlist

This is a discussion on Bash script for checking mysql processlist within the Shell scripting forums, part of the Development/Scripting category; Hi, I need a script to check mysql processlist, if it is not populated the script will email a notification ...


Go Back   nixCraft Linux Forum > Development/Scripting > Shell scripting

Register FAQ Members List Calendar Forgotten your password? Mark Forums Read
  #1 (permalink)  
Old 08-12-2008, 05:39 AM
Junior Member
User
 
Join Date: Mar 2008
My distro: Ubuntu
Posts: 4
Rep Power: 0
pinoyskull is on a distinguished road
Send a message via Yahoo to pinoyskull
Default Bash script for checking mysql processlist

Hi,

I need a script to check mysql processlist, if it is not populated the script will email a notification to the admins.

maybe we can modify this script to the one i need?

---
#!/bin/bash
while [ 1 ]
do
mysql -N -u root -ppassword -e 'show processlist' | egrep -v 'Sleep|show processlist'
sleep 2
done
---

or do you have a better one?
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 08-12-2008, 11:33 AM
rockdalinux's Avatar
Contributors
User
 
Join Date: May 2005
Location: Bangalore
My distro: RHEL, HP-UX, Solaris, FreeBSD, Ubuntu
Posts: 581
Rep Power: 7
rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough
Default

Can you tell me what is the purpose of such a script? Do you wanna monitor mysql? If it is not working send an email to admin?
__________________
Rocky Jr.
You may have my body & soul, but you will never touch my pride!

If you have knowledge, let others light their candles at it.

Certified to work on HP-UX / Sun Solaris / RedHat
Reply With Quote
Reply

Bookmarks

Tags
bash , mysql , processlist , show processlist


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Checking files exist seeker082 Shell scripting 6 02-22-2008 01:39 AM
checking windows file from linux jhn_daz@yahoo.com Getting started tutorials 1 10-31-2007 08:40 PM
bash script to collect info adahan Shell scripting 7 10-31-2007 07:06 PM
MySql FTP server backup script zafar466 Shell scripting 3 09-25-2007 06:43 PM
MySQL Backup Script krisa Shell scripting 1 02-03-2007 12:57 AM


All times are GMT +5.5. The time now is 04:59 PM.


Powered by vBulletin® Version 3.7.4 - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36