新建一个文件,并给予权限:
bash
touch port_monitor.sh
chmod 777 port_monitor.sh
写入如下命令:
bash
#!/bin/bash
# 定义要监控的端口号
PORT=3306
while true; do
# 使用netstat命令检查端口是否存在
netstat -tuln | grep ":$PORT "
if [ $? -ne 0 ]; then
echo "端口 $PORT 不存在,执行命令..."
else
echo "端口 $PORT 存在"
fi
# 等待1分钟
sleep 60
done
开启后台启动即可:
bash
./port_monitor.sh &
注意:使用windows编写的文件是dos格式,需要转换成unix格式:
可以使用vim编辑器进行转换
bash
set fileformat=unix