linux 监视端口是否正常的shell脚本
时间:2022-08-13 12:17:46|栏目:Shell|点击: 次
复制代码 代码如下:
#!/bin/bash
port=”80″
restart=”/etc/init.d/httpd restart”
EMAIL=”/bin/echo selboo | mutt -s "重新启动httpd" root@selboo.com.cn”
netstat -ln |awk ‘/^tcp/ {print $4}' |grep -q “:$port$” || {
#reboot httpd
eval $restart;$EMAIL
exit $?
}
exit 0
上一篇:linux shell字符串内置的常用操作(获取长度、查找、替换)
栏 目:Shell
下一篇:没有了
本文地址:http://www.codeinn.net/misctech/210644.html