首页 > 系统 > Linux > 正文

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

2019-10-26 18:35:18
字体:
来源:转载
供稿:网友
代码如下:
#!/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
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表