实际工作中我们需要知道部署在服务器上的应用有没有问题,但是人为的操作太麻烦有咩有简单的方式呢shell来监控我们服务器运行状态以及服务器上部署的应用,如果出现异常就会自动发送一个邮件给我们,开始搞起。。。 老套路,先梳理思路 监控apache web服务 监控mysql数据库 监控服务器硬盘使用情况 监控服务器的内存使用 1.apache 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.监控mysql !/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 #!/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 整合一下 #!/bin/bash # 功能:监控资源 # 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() }
shell实现脚本监控服务器及web应用
2019-06-13 11:01:36
浏览数 (1)