一、添加自带的http监控项
1.在浏览器中给server2添加http的监控项
- http是zabbix自带的监控模版
- 配置 —>主机 —> server2 —> 模板 —>选择 —> Template App HTTP Service—> 添加 —>更新
点击server2的监控项可以看到http服务正在运行
二、添加nginx监控
zabbix中没有nginx的监控项,所以要在agent端部署nginx服务
1.部署nginx服务并测试
(1)安装nginx的依赖性
[root@server3 ~]# yum install gcc pcre-devel zlib-devel -y
(2)解压安装包,关闭debug日志,编译安装
[root@server3 ~]# ls
nginx-1.16.0.tar.gz zabbix-agent-4.0.5-1.el7.x86_64.rpm
[root@server3 ~]# tar zxf nginx-1.16.0.tar.gz ##解压安装包
[root@server3 ~]# ls
nginx-1.16.0 nginx-1.16.0.tar.gz zabbix-agent-4.0.5-1.el7.x86_64.rpm
[root@server3 ~]# cd nginx-1.16.0
[root@server3 nginx-1.16.0]# vim auto/cc/gcc ##关闭debug日志
[root@server3 nginx-1.16.0]#
[root@server3 nginx-1.16.0]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module
##编译,需要添加http_stub_status_module模块,这是用来监控http状态的
[root@server3 nginx-1.16.0]# make && make install
(3)编辑配置文件
[root@server3 nginx-1.16.0]# cd /usr/local/nginx/conf/
[root@server3 conf]# vim nginx.conf
location /status {
stub_status on; ##状态监控开启
access_log off; ##不记录状态监控的日志
allow 127.0.0.1; ##只允许管理员查看
deny all; ##其他的都拒绝
}
(4)语法检测,开启服务
[root@server3 conf]# ../sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@server3 conf]# ../sbin/nginx
(5)访问测试:
[root@server3 conf]# curl http://127.0.0.1/status
Active connections: 1
server accepts handled requests
1 1 1
Reading: 0 Writing: 1 Waiting: 0