[root@web33 ~]# yum -y install gcc pcre-devel
[root@web44 ~]# yum -y install gcc pcre-devel
安装源码zabbix软件
[root@web33 Zabbix]# tar -xf zabbix-3.4.4.tar.gz
[root@web33 Zabbix]# cd zabbix-3.4.4/
[root@web33 zabbix-3.4.4]# ./configure --enable-agent
[root@web33 zabbix-3.4.4]# make && make install
[root@web44 Zabbix]# tar -xf zabbix-3.4.4.tar.gz
[root@web44 Zabbix]# cd zabbix-3.4.4/
[root@web44 zabbix-3.4.4]# ./configure --enable-agent
[root@web44 zabbix-3.4.4]# make && make install
修改配置文件
[root@web33 zabbix-3.4.4]# vim /usr/local/etc/zabbix_agentd.conf
#Server=127.0.0.1
StartAgents=0
ServerActive=192.168.4.55
Hostname=web33
:wq
[root@web44 zabbix-3.4.4]# vim /usr/local/etc/zabbix_agentd.conf
#Server=127.0.0.1
StartAgents=0
ServerActive=192.168.4.55
Hostname=web44
:wq
启动服务,只有端口没有进程
[root@web33 ~]# useradd zabbix
[root@web33 ~]# zabbix_agentd
[root@web33 ~]# netstat -utnlp |
grep :10050 没有端口
[root@web33 ~]# ps -C zabbix_agentd 有进程
[root@web44 ~]# useradd zabbix
[root@web44 ~]# zabbix_agentd
网友评论