我需要一个LinuxShell脚本的帮助,它应该自动检查主机是否可以访问。最好每隔3-5秒ping端口22。如果端口可以访问,程序应该执行命令服务HelloWorld stop。如果无法访问主机,则脚本应自动在计算机上执行命令,例如service HelloWorld start。
有人知道如何实施吗?
我有这样的东西,但那不起作用,
#!/bin/bash
IP='192.168.1.1'
fping -c1 -t300 $IP 2>/dev/null 1>/dev/null
if [ "$?" = 0 ]
then
service helloworld stop
else
service helloworld start
fi
最佳答案
尝试以下代码
#!/bin/bash
IP='192.168.1.1'
PORT=22
(echo >/dev/tcp/$IP/$PORT) &>/dev/null
if [ "$?" = 0 ]
then
service helloworld stop
else
service helloworld start
fi
这样,就可以检查特定端口是否可访问的IP
关于linux - 主机Ping服务启动脚本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55097072/