准备内容
- zabbix安装包(官网版本:zabbix-2.2.9.tar.gz)
- yum groupinstall “Development tools”
- zabbix安装脚本
cd /tmp && tar -zxf zabbix.gz
安装步骤
修改zabbix_server程序的磁盘路径
修改zabbix_server主程序路径1
2# vim /usr/local/zabbix/misc/init.d/tru64/zabbix_server
DAEMON=/usr/local/zabbix/sbin/zabbix_server添加下面两句到
#!/bin/bash
之后,解决service myservicedoes not support chkconfig
问题1
2# chkconfig: 2345 10 90
# description:zabbix....编辑zabbix_agentd配置文件
vim /usr/local/zabbix/etc/zabbix_agentd.conf
1
2
3
4
5
6
7
8LogFile=/tmp/zabbix_agentd.log
#服务端IP
Server=192.168.1.80
#服务端IP
ServerActive= 192.168.1.80
#客户端IP与zabbix-web配置上的hostName一致
Hostname=localhost
UnsafeUserParameters=1执行安装脚本
1
2
3cd /usr/local/zabbix/script/install-zabbix_agentd.sh
chmod +x install-zabbix_agentd.sh
sudo ./install-zabbix_agentd.sh
相关操作
若zabbix的host无法访问,考虑防火墙是否需要关闭/加入信任端口
#查看防火墙状态 service iptables status #关闭防火墙 service iptables stop #永久关闭防火墙 chkconfig iptables off
查看zabbix服务是否已启动
netstat -utlnp | grep zabbix
配置文件更新后,需重启客户端服务
service zabbix_agentd restart