·1、判断当前磁盘剩余空间是否有20G,如果小于20G,则将报警邮件发送给管理员,每天检查一
次磁盘剩余空间。
编写脚本
[root@server ~]# vim disk1.sh
#!/bin/bash
disk=$(df -m | grep -w "/" | tr -s " " | cut -d " " -f4)
str1="Warning disk space less then 20G!"
if [ "$disk" -lt 20000 ]
then
echo "$str1" | mail -s "$str1" 1581218609@qq.com
fi
记得发送邮件前, 点击qq邮箱设置-账户-管理服务-生成授权码
set smtp-auth-password后面是授权码
编写周期性计划任务
[root@server ~]# vim /etc/crontab
#!/bin/bash
0 0 * * * root /bin/bash /root/disk1.sh
·2、判断wb服务是否运行(1、查看进程的方式判断该程序是否运行,2、通过查看端口的方式
判断该程序是否运行),如果没有运行,则启动该服务并配置防火墙规侧。
- 查看进程的方式判断该程序是否运行
[root@server ~]# vim httpd.sh
#!/bin/bash
ps=$(ps -ef | grep "httpd" | grep -v "grep" | wc -l)
if [ "$ps" -gt 0 ]
then
echo "httpd is running"
else
echo "httpd not start,waiting..."
yum install httpd -y &> /dev/null
systemctl start httpd
systemctl start firewalld
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-port=80/tcp
firewall-cmd --reload > /dev/null
echo "httpd is running!"
fi
[root@server ~]# bash httpd.sh
httpd is running
- 通过查看端口的方式判断该程序是否运行
把上面的ps=$(ps -ef | grep "httpd" | grep -v "grep" | wc -l) 换成
ps=$(netstat -lntup | grep -w 80 | wc -l)
·3、使用curl命令访问第二题的web服务,看能否正常访问,如果能正常访问,则返回web server
is running;如果不能正常访问,返回12状态码。
[root@server ~]# vim httpd2.sh
#!/bin/bash
curl -s 192.168.136.128 > /dev/null
if (($?==0))
then
echo "web server is running"
else
echo "web not accessible"
exit 12
fi
[root@server ~]# bash httpd2.sh
web server is running