shell监控web服务的多种方案

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell监控web服务的多种方案相关的知识,希望对你有一定的参考价值。

1.端口

本地:ss.netstat,lsof

远程:telnet,nmap.nc

2.本地进程数

3.header(http,curl),模拟用户的方式

4.URL(wget,curl).模拟用户的方式

5.php,java写监控的程序,模拟用户的方式(让开发提供)



范例判断条件

[[email protected] ~]# lsof -i :80|wc -l    #本地端口  
2
[[email protected] ~]# nmap 127.0.0.1 -p 80    #远程端口

Starting Nmap 5.51 ( http://nmap.org ) at 2017-06-28 14:13 CST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.000080s latency).
PORT   STATE SERVICE
80/tcp open  http

Nmap done: 1 IP address (1 host up) scanned in 0.05 seconds
[[email protected] ~]# nmap 127.0.0.1 -p 80|wc -l
8
[[email protected] ~]# nmap 127.0.0.1 -p 80|grep open|wc -l  
1
[[email protected] ~]# ps -ef|grep nginx |wc -l    #进程
12
[[email protected] ~]# culr -I -s -w "%{http_code}" -o /dev/null 127.0.0.1
200      #curl
[[email protected] ~]# wget --spider --timeout=10 --tries=2 127.0.0.1 &>/dev/null
[[email protected] ~]# echo $?     #wget看返回值
0

案例shell

#!/bin/bash
http_code=`culr -I -s -w "%{http_code}" -o /dev/null 127.0.0.1`
if [ $http_code -ne 200 ]
then
  echo "web is erro"
else
  echo "web is ok"
fi

本文出自 “小菜鸟” 博客,请务必保留此出处http://baishuchao.blog.51cto.com/12918589/1942710

以上是关于shell监控web服务的多种方案的主要内容,如果未能解决你的问题,请参考以下文章

shell 实现监控Web服务状态

Zabbix+shell两种方式监控任意web并及时报警

shell秘籍Linux系统服务硬件监控邮件告警四式

shell基本语法2

zabbix简介及优缺点

案例六:shell脚本监控httpd服务80端口状态