首页 > 开发 > Linux Shell > 正文

linux 监视端口是否正常的shell脚本

2020-07-27 19:26:24
字体:
来源:转载
供稿:网友
复制代码 代码如下:

#!/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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表