监控状态方法

1、查看端口

lsof -i :80|wc -l

2、远程端口

nmap 192.168.1.13 -p 80|grep open|wc -l

3、查看本地进程

ps -ef|grep nginx|wc -l

4、查看状态

curl -I -s -w "%{http_code}" -o /dev/null 192.168.1.13

5、查看返回值

wget --spider --timeout=10 --tries2 192.168.1.13 &>/dev/null


你可能感兴趣的:(null,监控)