1、判断当前磁盘剩余空间是否有20G,如果小于20G,则将报警邮件发送给管理员,每天检查一次磁盘剩余空间。
[root@server ~]# vim test1.sh
#!/bin/bash
free_mb=$(df -m | grep -w “/” | tr -s " " | cut -d " " -f4 )
if [[ $free_mb -lt 20480 ]]
then
echo “warning: The computer has $free_gb G of memory left ,Less than 20G” | mail -s “warning” root
else
echo " warning: The computer has $free_gb G ,It is enough"
fi
2、判断web服务是否运行(1、查看进程的方式判断该程序是否运行,2、通过查看端口的方式判断该程序是否运行),如果没有运行,则启动该服务并配置防火墙规则。
[root@server ~]# vim test2.sh
#!/bin/bash
num=$(ps -ef | grep httpd | grep -v grep | wc -l)
if [ $num -ge 1 ]
then
echo “httpd is running”
else
systemctl restart httpd
systemctl stop firewalld
fi
[root@server ~]# vim test2.sh
#!/bin/bash
num=$(ss -lntup | grep 80 | wc -l)
if [ $num -ge 1 ]
then
echo “httpd is running”
else
systemctl restart httpd
systemctl stop firewalld
fi
3、使用curl命令访问第二题的web服务,看能否正常访问,如果能正常访问,则返回web server is running;如果不能正常访问,返回12状态码。
[root@server ~]# vim test3.sh
#!/bin/bash
curl -s 192.168.38.128 > /dev/null
if [[ $? = 0 ]]
then
echo " web server is running"
else
exit 12
fi