A shell script to monitor server disk space and send an email alert to admin. This is useful if you are using rented dedicated / vps server and backup data to NAS everyday. This script will monitor disk space and it will send you an email. Make sure you setup your email id, NAS space alert limit and other required parameters. Directly install this script at /etc/cron.daily/ or open /etc/crontab and append following line:
@daily /path/to/nas.monitor.script.sh
Sample shell script to monitor NAS backup disk space for your account
#!/bin/bash # Shell Script to monitor NAS backup disk space # Shell script will mount NAS using mount command and look for total used # disk space. If NAS is running out of disk space an email alert will be sent to # admin. # ------------------------------------------------------------------------- # Copyright (c) 2004 nixCraft project <http://cyberciti.biz/fb/> # This script is licensed under GNU GPL version 2.0 or above # ------------------------------------------------------------------------- # This script is part of nixCraft shell script collection (NSSC) # Visit http://bash.cyberciti.biz/ for more information. # ------------------------------------------------------------------------- #!/bin/bash #*** SET ME FIRST ***# NASUSER="Your-User-Name" NASPASS="Your-Password" NASIP="nas.yourcorp.com" NASROOT="/username" NASMNTPOINT="/mnt/nas" EMAILID="admin@yourcorp.com" GETNASIP=$(host ${NASIP} | awk '{ print $4}') # Default warning limit is set to 17GiB LIMIT="17" # Failsafe [ ! -d ${NASMNTPOINT} ] && mkdir -p ${NASMNTPOINT} mount | grep //${GETNASIP}/${NASUSER} # if not mounted, just mount nas [ $? -eq 0 ] && : || mount -t cifs //${NASIP}/${NASUSER} -o username=${NASUSER},password=${NASPASS} ${NASMNTPOINT} cd ${NASMNTPOINT} # get NAS disk space nSPACE=$(du -hs|cut -d'G' -f1) # Bug fix # get around floating point by rounding off e.g 5.7G stored in $nSPACE # as shell cannot do floating point SPACE=$(echo $nSPACE | cut -d. -f1) cd / umount ${NASMNTPOINT} # compare and send an email if [ $SPACE -ge $LIMIT ] then logger "Warning: NAS Running Out Of Disk Space [${SPACE} G]" mail -s 'NAS Server Disk Space' ${EMAILID} <<EOF NAS server [ mounted at $(hostname) ] is running out of disk space!!! Current allocation ${SPACE}G @ $(date) EOF else logger "$(basename $0) ~ NAS server ${NASIP} has sufficent disk space for backup!" fi
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- 10 Greatest Open Source Software Of 2009
- My 10 UNIX Command Line Mistakes
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
4000+ howtos and counting! Want to read more Linux / UNIX howtos, tips and tricks? We request you to sign up for the Daily email newsletter or Weekly newsletter and get intimated about our new howtos / faqs as soon as it is released.
- Download Script
- Email this to a friend
- Rss Feed
- Last Updated: 09/13/08
Sign up for our daily email newsletter: