1、判断当前磁盘剩余空间是否有20G,如果小于20G,则将报警邮件发送给管理员,每天检查次磁盘剩余空间。
安装邮件服务:
[root@server ~]# yum install s-nail -y
配置邮件服务:
[root@server ~]# vim /etc/s-nail.rc
set from=2******15@qq.com
set smtp=smtp.qq.com
set smtp-auth-user=2*****15@qq.com
set smtp-auth-password=vk*****icd
set smtp-auth=login
# 注意:文件配置完毕需要强制保存并退出,末行模式下输入wq!
编写脚本:
[root@server ~]# vim disk1.sh
#!/bin/bash
disk=`df -m | grep -w "/" | tr -s " " | cut -d " " -f4`
str1="warning:disk space less than 20G!"
if (($disk -lt 20000))
then
echo "$str1" | mail -s "$str1" 2***5@qq.com
fi
发送邮件:
[root@server ~]# vim /etc/crontab
MAILTO=2***5@qq.com
0 0 * * * root /bin/bash /root/disk1.sh
2、判断web服务是否运行 (1、查看进程的方式判断该程序是否运行,2、i通过查看端口的方式判断该程序是否运行),如果没有运行,则启动该服务并配置防火墙规则。
[root@server ~]# vim web1.sh
#!/bin/bash
ps=`ps -ef | grep httpd | grep -v grep | wc -l`
if [ "$ps" -gt 0 ]
then
echo "HTTP is already running"
else
echo "HTTP not started,waiting...."
yum install httpd -y > /dev/null
systemctl start httpd
systemctl start firewalld
firewall-cmd --permanent --zone=public --add-service=http >/dev/null
firewall-cmd --reload >/dev/nall
echo "HTTP is already running"
fi
3、使用curl命令访问第二题的web服务,看能否正常访问,如果能正常访问,则返回web serveis running; 如果不能正常访问,返回12状态码。
[root@server ~]# vim curl1.sh
#!/bin/bash
ip=`ip a | grep ens160 | grep inet | cut -d "/" -f1 | tr -s ' ' | cut -d ' ' -f3`
curl -s $ip > /dev/null
if (($?==0))
then
echo "web server is running."
else
echo "Web not accessible"
exit 12
fi