赞
踩
150.22(监控端)
150.23(被监控端)
监控端(zabbix-server安装)可参考博文
https://editor.csdn.net/md/?articleId=113395057
安装agent服务
yum -y install zabbix-agent
--启动
systemctl start zabbix-agent.service
--开机自启
systemctl enable zabbix-agent.service
可以到在清华源下载指定的版本
https://mirrors.tuna.tsinghua.edu.cn/
我有安装包直接用rpm -ivh 安装了
zabbix-server(150.22)监控自己
所以在
vim /etc/zabbix/zabbix_agentd.conf 配置文件中
Server=127.0.0.1
问题
当以后重启linux之后会发现
zabbix-agent 没有启动
1.看一下状态
systemctl status zabbix-server.service
2.原因
关闭防火墙
systemctl stop firewalld
systemctl disable firewalld
selinux没有关闭!
3.解决
永久关闭selinux, 将SELINUX值修改为disabled
#setenforce 1 设置SELinux 成为enforcing模式
#setenforce 0 设置SELinux 成为permissive模式
setenforce 0
(sed -ri '/^SELINUX=/cSELINUX=disabled' /etc/sysconfig/selinux)
reboot重启之后再看一下状态启动成功了
在(被监控端)150.23中
安装zabbix-agent
在配置文件指定zabbix-server端地址
vim /etc/zabbix/zabbix_agentd.conf
#zabbix服务器的地址,使用内网地址
Server=192.168.150.22 # 被动
##本机的主机名
Hostname=150.23
其中Server和ServerActive都指定zabbixserver的IP地址,不同的是,前者是被动后者是主动。也就是说Server这个配置是用来允许192.168.146.100这个ip来我这取数据。而serverActive的192.168.146.100的意思是,客户端主动提交数据给他。
--启动
systemctl start zabbix-agent.service
--开机自启
systemctl enable zabbix-agent.service
#查看进程
netstat -anput | grep zabbix
在web上添加被监控主机
添加之后在主机主面板可看到被监控主机信息
自定义监控内存
在23主机 定义剩余内存百分比
vim /etc/zabbix/zabbix_agentd.d/oldboy.conf
UserParameter=memory23,free -m |awk '/^Mem/{print $NF*100/$2}'
systemctl restart zabbix-agent.service
在22主机 定义剩余内存百分比
vim /etc/zabbix/zabbix_agentd.d/oldboy.conf
UserParameter=memory22,free -m |awk '/^Mem/{print $NF*100/$2}'
systemctl restart zabbix-agent.service
在22主机(zabbix-server端)
zabbix_get -s 192.168.150.23 -k 'memory23'
zabbix_get -s 127.0.0.1 -k 'memory22'
zabbix_get 报错则验证安装
yum list all |grep zabbix
rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-get-4.0.22-1.el7.x86_64.rpm
自定义模板:创建模板-创建应用集-创建监控项-创建图形-将主机绑定模板
问题:图形显示异常
zabbix日志
find / -name zabbix_server.log
more /var/log/zabbix/zabbix_server.log
# zabbix-agent.service failed.
tail -f /var/log/messages |grep zabbix
原因:php版本太低
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。