标签:telnet mysql 返回值 code nmap ant local localhost $()
一监控web方法 if [ `netstat -lnt|grep 3306| ec -l ` -eq 0 ]
if [ `ps -ef |grep mysql|grep -v grep| wc -l` | -gt 0 ]
if [ `nc -w 2 localhost 22 &>/dev/null&&echo ok|grep ok| wc -l` -gt 0 ]
if [ `nmap localhost -p 22 2>/dev/null | grep open |wc -l ` -gt 0 ]
if [ `netstat -lntup | grep mysqld |wc -l ` -gt 0 ]
if [ `lsof -i tcp:3306 | wc -l` -gt 0 ]
lsof -i:端口 或者lsof -i tcp:端口
反引号可以写成$() 这样写最好,要不反引号容易丢掉
上面的问题在比对的时候-eq如果是空值和数字比较会报错,所以用-eq的时候一定要考虑空值
不要取值进行比较,一定要取行进行比较 这样省事
if [ "`curl -l -s -o -w "%{http_code}\n" http://localhost `" = "200" ] /dev/null -w
if [ `curl -I http://127.0.0.1 2>/dev/null |head -l | grep 200 | wc -l ` -eq 1 ]
if [ `curl -s http://127.0.0.1 &>/dev/null&&echo $?`" ="0" ]
curl -s http://localhost &>/dev/null
然后去判断上一个命令的执行结果 $?
另外一个是故意在网站上放一个页面,然后去取下来检查里边的东西是不是固定的
标签:telnet mysql 返回值 code nmap ant local localhost $()
原文地址:http://blog.51cto.com/aklaus/2324879