标签:监控部署
现在我们在另外一台机器上安装zabbix-agent
[root@01~]# yum install zabbix22-agent –y
*使用yum安装即可
[root@01~]# grep ^[^#] /etc/zabbix_agentd.conf PidFile=/var/run/zabbix/zabbix_agentd.pid
LogFile=/var/log/zabbix/zabbix_agentd.log
LogFileSize=0
Server=ip
ServerActive=ip
Include=/etc/zabbix_agentd.conf.d/
*只要在zabbix_agentd.conf 配置文件里面配置一些server端ip,自己的日志、pid信息即可。
[root@01~]# mkdir /etc/zabbix_agentd.conf.d
[root@01~]# /etc/init.d/zabbix-agentd start
Zabbix-agent配置完成
以添加tcp连接数为例,写好脚本tcp_conn_80.sh
[root@a01zabbix_scripts]# cat tcp_conn_80.sh
#!/bin/bash
netstat-nltupa |awk -F‘ ‘ ‘{print $4}‘ |grep :80 |wc -c
[root@01zabbix_scripts]# pwd
/data/install/zabbix_scripts
[root@01zabbix_scripts]# cat /etc/zabbix_agentd.conf.d/tcp_conn.conf
UserParameter=tcp_conn_80,/data/install/zabbix_scripts/tcp_conn_80.sh
[root@01zabbix_scripts]# bash tcp_conn_80.sh
13
[root@02~]# zabbix_get -s ip -k tcp_conn_80
13
本文出自 “我是喳喳” 博客,转载请与作者联系!
标签:监控部署
原文地址:http://mydnjm.blog.51cto.com/11317639/1751249