1.第一次作业
1、判断当前磁盘剩余空间是否有20G,如果小于20G,则将报警邮件发送给管理员,每天检查一
次磁盘剩余空间。
[root@server ~]# vim cipan.sh
#!/bin/bash
Space=$(df -m | grep -w "/" | tr -s " " | cut -d " " -f4)
if [ "$Space" -lt 20000 ]
then
echo "linux磁盘剩余空间不足20G,当前磁盘剩余空间为$Space M" | mail -s "磁盘内存警告!" 2274309550@qq.com
fi
[root@server ~]# vim /etc/crontab
0 0 * * * root bash /root/cipan.sh
2、判断web服务是否运行(1、查看进程的方式判断该程序是否运行,2、通过查看端口的方式
判断该程序是否运行),如果没有运行,则启动该服务并配置防火墙规则。
[root@server ~]# vim web.sh
#!/bin/bash
ps=$(ps -ef | grep httpd | tr -s " " | wc -l)
net=$(netstat -lntup | grep 80 | wc -l)
if [ "$ps" -gt 0 ]
then
echo "httpd is already running"
elif [ "$net" -gt 0 ]
then
echo "httpd is already running"
else
echo "httpd not started,waiting..."
yum install httpd -y &> /dev/null
systemctl start httpd
systemctl start firewalld
firewall-cmd --permanent --zone=pubilc --add-service=http &> /dev/null
firewall-cmd --permanent --zone=pubilc --add-port=80/tcp &> /dev/null
firewall-cmd --permanent --reload &> /dev/null
echo "httpd is already running"
fi
3、使用curl命令访问第二题的web服务,看能否正常访问,如果能正常访问,则返回web server
is running;如果不能正常访问,返回12状态码。
[root@server ~]# vim curlweb.sh
#!/bin/bash
curl -s 192.168.146.100 $> /dev/null
if [ $? -eq 0 ]
then
echo "web server is running"
else
echo "web not accessible"
exit 12
fi
能访问本机IP并获取内容,但是$?返回状态码时显示是6而不是0