1.lsof -i :80|wc -l

2.nmap 192.168.1.14 -p 80|grep open|wc -l

3.ps -ef|grep nginx|wc -l

4.curl -I 192.168.1.14 2>/dev/null |head -1
  curl -I -s 192.168.1.14 |head -1
  curl -o /dev/null -s -w "%{http_code}\n" 192.168.1.14 
  
5.wget --spider --timeout=100 --tries=2 192.168.1.14 &>/dev/null;echo $?

6.php,java 程序