> 文章列表 > RHCE(五)

RHCE(五)

RHCE(五)

目录

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

1.创建脚本test1.sh

2.下载邮件服务并执行

3.测试

4.做计划任务

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

1.安装httpd

2.创建脚本test2

3.测试

4.查看端口号,修改test2脚本

5.测试

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

1.编写脚本test3.sh

2.测试


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

1.创建脚本test1.sh

[root@server ~]# vim test1.sh
#!/bin/bash
free_mb=$(free -m | grep Mem | tr -s " " | cut -d " " -f4 )
if [[  $free_mb -lt 20480 ]]
thenecho "warning: The computer has $free_gb G of memory left ,Less than 20G" | mail -s "warning" root
elseecho " warning: The computer has $free_gb G ,It is enough"
fi

2.下载邮件服务并执行

[root@server ~]# yum install postfix -y
[root@server ~]# yum install s-nail -y
[root@server ~]# systemctl start postfix.service   #重启服务

3.测试

4.做计划任务

[root@server ~]# vim /etc/crontab 

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

1.安装httpd

[root@server ~]# yum install httpd -y

2.创建脚本test2

[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 httpdsystemctl stop firewalld
fi      

3.测试

[root@server ~]# systemctl stop httpd 
[root@server ~]# sh test2.sh  
[root@server ~]# sh test2.sh  
httpd is running

4.查看端口号,修改test2脚本

[root@server ~]# vim test2.sh#!/bin/bashnum=$(ss -lntup  |  grep  80  | wc  -l)
if [ $num -ge 1 ]
thenecho "httpd is running"
elsesystemctl restart httpdsystemctl stop firewalld
fi

5.测试

[root@server ~]# systemctl stop httpd 
[root@server ~]# sh test2.sh  
[root@server ~]# sh test2.sh  
httpd is running

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

1.编写脚本test3.sh

[root@server ~]# vim test3.sh 
#!/bin/bash
curl -s 192.168.183.128 > /dev/null
if [[  $? = 0 ]]
thenecho " web server is running"
elseexit 12
fi

2.测试

[root@server ~]# sh test3.sh 
[root@server ~]# sh test3.sh 
[root@server ~]# echo $?
12