• linux下几个简易的系统监控脚本


    公司没有专门的系统管理员,因此一些服务器安全措施也得我们程序员自己去做,对Linux服务器了解不是很多,查了些资料,下面是自己写的几个简易的服务器监控脚本,希望路过的仙人指点指点,进一步修正完善!

        1.服务器登陆用户监控,登陆用户超过两个时发邮件通知,使用139邮箱接收,方便短信通知。

     

    Bash代码:  
    1. #!/bin/bash  
    2. IP=`ifconfig eth0 | grep "inet addr"|awk '{print $2}'|cut -f 2 -d ":"`  
    3. users=`uptime|awk '{print $6}'`  
    4. #if[$users -ge 2]  
    5. if [ $users -ge 2 ]  
    6. then  
    7.   echo "$IP server login users is more than 2"|mail -s "warning:" ****@139.com  
    8. fi  

        2.MySQL运行状态监控,没有正常运行则重新启动服务,重启失败发送邮件通知

    Bash代码: 
    1. #! /bin/bash  
    2. #MySQL running这个字符串根据数据库版本正常运行时status显示的信息确定  
    3. /sbin/service mysql status | grep "MySQL running" > /dev/null  
    4.   
    5. if [ $? -eq 0 ]  
    6. then  
    7.         #状态正常检查3306端口是否正常监听  
    8.         netstat -ntp | grep 3306 > /dev/null  
    9.         if [ $? -ne 0 ]  
    10.         then  
    11.                 /sbin/service mysql restart  
    12.                 sleep 3  
    13.                /sbin/service mysql status | grep " MySQL running" > /dev/null  
    14.                 if [ $? -ne 0 ]  
    15.                 then  
    16.                         echo "mysql service has stoped ,Automatic startup failure, please start it manually!" | mail -s "mysql is not running" ***@139.com  
    17.                  fi  
    18.   
    19.         fi  
    20. else  
    21.         /sbin/service mysql start  
    22.         sleep 2;  
    23.         /sbin/service mysql status | grep "MySQL running" > /dev/null  
    24.         if [ $? -ne 0 ]  
    25.         then  
    26.                 echo "mysql service has stoped ,Automatic startup failure, please start it manually!" | mail -s "mysql is not running" ***@139.com  
    27.         fi  
    28. fi  

        3.硬盘空间使用状况监控,当有分区空间使用超过80%时,邮件通知

    Bash代码:  
    1. #!/bin/bash  
    2. #set -x  
    3. checkLog=/var/log/check-space.log  
    4. fullFlag=0  
    5. df -h > $checkLog  
    6. percent_list=$(cat $checkLog  | awk '{print $5}' | grep -Eo "[0-9]+")  
    7. for num in $percent_list  
    8. do  
    9.     if [ $num -ge 80 ]; then  
    10.         fullFlag=1  
    11.     fi  
    12. done  
    13.   
    14. if [ $fullFlag -eq 1 ]; then  
    15.     echo "$(hostname): used disk space is more than 80%"|mail -s "warning:disk space is not enough" ***@139.com  
    16. fi  

     ps:邮件通过配置mail使用外部SMTP服务器发送,这里使用163的SMTP服务器。vi 编辑/etc/mail.rc,在开始部分加入下面的代码,:wq退出保存即可!

    Xml代码:  
    1. set from=test@163.com  
    2. set smtpsmtp=smtp.163.com  
    3. set smtp-auth-user=test  
    4. set smtp-auth-password=test123  

     

  • 相关阅读:
    P1509 找啊找啊找GF
    P1508 Likecloud-吃、吃、吃
    P1493 分梨子
    P1507 NASA的食物计划
    Java简单从文件读取和输出
    服务器和普通用户电脑的区别
    readUTF()和writeUTF()
    js中substring和substr的用法
    AfxMessageBox和MessageBox差别
    POJ 3691 & HDU 2457 DNA repair (AC自己主动机,DP)
  • 原文地址:https://www.cnblogs.com/xinyuyuanm/p/2993271.html
Copyright © 2020-2023  润新知