实际工做中咱们须要知道部署在服务器上的应用有没有问题,可是人为的操做太麻烦有咩有简单的方式呢shell来监控咱们服务器运行状态以及服务器上部署的应用,若是出现异常就会自动发送一个邮件给咱们,开始搞起。。。python
老套路,先梳理思路mysql
监控apache web服务 监控mysql数据库 监控服务器硬盘使用状况 监控服务器的内存使用
废话很少说,直接上代码linux
1.apache web 服务器web
!/bin/bash # 表示请求连接3秒钟,不要返回的测试数据 nc -w 3 localhost 80 &>/dev/null if [ $? -eq 0 ];then str="apache web status Running!" else str="apache web status Shuting!" fi # 发送的主题,邮件地址 echo str|mail -s 'apache web server' admin@lampym.com
2.监控mysqlsql
!/bin/bash # 表示请求连接3秒钟,不要返回的测试数据 nc -w 3 localhost 3306 &>/dev/null if [ $? -eq 0 ];then str="mysql server status Running!" else str="mysql server status Shuting!" fi # 发送的主题,邮件地址 echo str|mail -s 'mysql server status' admin@lampym.com
3.监控服务器disk数据库
#!/bin/bash :<<! NR表示行数,$5表示第5列,具体的本身根据实际调整 ! ds=`df |awk '{if(NR==4){print int($5)}}'` # 这里45根据实际须要更改 if [ $ds -lt 45 ];then str="disk space is less then!!!" else str="disk space is greate than 45%!!!" fi echo $str|mailx -s 'linux server disk space' admin@lampym.com
4.监控服务器monery apache
#!/bin/bash :<<! 具体的本身根据实际调整 ! mery=`df |awk '{if(NR==2){print int($3*100/$2)}}'` if [ $mery -lt 50 ];then str="mery space is less then 50%!!!" else str="mery space is greate than 50%!!!" fi echo $str|mailx -s 'linux server mery space' admin@lampym.com
整合一下bash
#!/bin/bash # 功能:监控资源 # 名称:cont.sh # 做者:枫客浪人 # 版本:0.1 # 联系方式:xxxx # apache 应用服务 apache_web(){ nc -w 3 localhost 80 &>/dev/null if [ $? -eq 0 ];then str="apache web status Running!" else str="apache web status Shuting!" fi # 发送的主题,邮件地址 echo str|mail -s 'apache web server' admin@lampym.com } # mysql 服务 mysql_db(){ nc -w 3 localhost 3306 &>/dev/null if [ $? -eq 0 ];then str="mysql server status Running!" else str="mysql server status Shuting!" fi # 发送的主题,邮件地址 echo str|mail -s 'mysql server status' admin@lampym.com } # 磁盘使用状况 disk_mnt(){ ds=`df |awk '{if(NR==4){print int($5)}}'` # 这里45根据实际须要更改 if [ $ds -lt 45 ];then str="disk space is less then!!!" else str="disk space is greate than 45%!!!" fi echo $str|mailx -s 'linux server disk space' admin@lampym.com } # 内存使用状况 meny_mnt(){ mery=`df |awk '{if(NR==2){print int($3*100/$2)}}'` if [ $mery -lt 50 ];then str="mery space is less then 50%!!!" else str="mery space is greate than 50%!!!" fi echo $str|mailx -s 'linux server mery space' admin@lampym.com } min(){ apache_web() mysql_db() disk_mnt() meny_mnt() }
我的以为还可将脚本更加复杂化,加入更多咱们想要的信息,好比报错后具体的错误信息等等,固然这只是简单的例子,若是有须要,小伙伴们能够本身添加本身须要的内容。。。。。服务器
关于自动监控策略,我这里采用的是Linux中的定时crontab,编写计划,自动监控,天天发送一份报告,这样天天我都会收到服务器的一个状态less
crontab -e
天天13:10分执行代码发送一份邮件