rhce五次作业

1、判断当前磁盘剩余空间是否有20G,如果小于20G,则将报警邮件发送给管理员,每天检查一次磁盘剩余空间

rhce五次作业_第1张图片

 

2、判断web服务是否运行(1、查看进程的方式判断该程序是否运行,2、通过查看端口的方式判断该程序是否运行),如果没有运行,则启动该服务并配置防火墙规则。

rhce五次作业_第2张图片

[root@localhost homework]# systemctl start httpd
[root@localhost homework]# ./start.sh
[root@localhost homework]# ./start.sh
htppd.service is running.

查看端口:

rhce五次作业_第3张图片


​3、使用curl命令访问第二题的web服务,看能否正常访问,如果能正常访问,则返回web server is running;如果不能正常访问,返回12状态码。

代码:

#!/bin/bash
 
curl -s 192.168.5.130 > /dev/null
if [[ $? = 0 ]];then
	echo "web server is running."
else
	exit 12
fi

你可能感兴趣的:(服务器,linux,运维)