linux zabbix-6.0.1-Agent客戶端的安裝配置

yy418408247發表於2022-09-14

題外話:使用原始碼檔案安裝比較消耗時間,建議使用docker 或者是  dnf install zabbix-agent 具體的操作,在其他博文中。


解壓zabbix-6.0.1.tar.gz原始碼檔案,切換至解壓目錄,編譯安裝Zabbix

[ root@VM-16-38-centos ~]# tar -zvxf zabbix-6.0.1.tar.gz

 

 

#預編譯

[ root@VM-16-38-centos ~]# cd zabbix-6.0.1/

[ root@VM-16-38-centos zabbix-6.0.1]# ./configure --prefix=/usr/local/zabbix/ --enable-agent

 

出現錯誤:configure: error: Unable to use libpcre (libpcre check failed)

 

處理方式:

[ root@VM-16-38-centos zabbix-6.0.1]# yum -y install pcre*

 

 

 

#再次進行預編譯

[ root@VM-16-38-centos zabbix-6.0.1]# ./configure --prefix=/usr/local/zabbix/ --enable-agent

 

#編譯

[ root@VM-16-38-centos zabbix-6.0.1]# make -j4

 

#安裝

[ root@VM-16-38-centos zabbix-6.0.1]# make install

 

#新增軟連線

[ root@VM-16-38-centos zabbix-6.0.1]# ln -s /usr/local/zabbix/sbin/zabbix_* /usr/local/sbin/

#修改zabbix_agentd.conf客戶端配置檔案,執行如下命令,zabbix_agentd.conf內容,指定server IP,同時設定本地Hostname

 

#備份配置檔案

[ root@VM-16-38-centos etc]# cp zabbix_agentd.conf zabbix_agentd.conf.bak

#更改配置檔案

[ root@VM-16-38-centos etc]# grep -v "^#" zabbix_agentd.conf | grep -v "^$"

LogFile=/tmp/zabbix_agentd.log

Server=127.0.0.1

ServerActive=127.0.0.1

Hostname=Zabbix server

[root@VMmuqx-a1 etc]# vi zabbix_agentd.conf

LogFile=/tmp/zabbix_agentd.log

Server=192.168.1.140

ServerActive=192.168.1.140

Hostname = 192.168.1.141

 

#cp zabbix_agentd啟動指令碼至/etc/init.d/目錄

[ root@VM-16-38-centos etc]# cd /root/zabbix-6.0.1/

[ root@VM-16-38-centos zabbix-6.0.1]#

[ root@VM-16-38-centos zabbix-6.0.1]# cp misc/init.d/tru64/zabbix_agentd /etc/init.d/zabbix_agentd

#進行授權,執行需要許可權

[ root@VM-16-38-centos zabbix-6.0.1]# chmod o+x /etc/init.d/zabbix_agentd

 

#啟動zabbix_agentd服務

[ root@VM-16-38-centos zabbix-6.0.1]# /etc/init.d/zabbix_agentd start

出現錯誤:zabbix_agentd [2019]: user zabbix does not exist

 

處理方法:

建立zabbix組,建立zabbix使用者

[ root@VM-16-38-centos zabbix-6.0.1]# groupadd zabbix

[ root@VM-16-38-centos zabbix-6.0.1]# useradd -g zabbix zabbix -s /sbin/nologin

 

#再次啟動zabbix_agentd 服務

[ root@VM-16-38-centos zabbix-6.0.1]# /etc/init.d/zabbix_agentd start

 

#zabbix_agentd啟動正常

[ root@VM-16-38-centos zabbix-6.0.1]# ps aux | grep zabbix

 

#zabbix_agentd預設監聽埠為10050

[r root@VM-16-38-centos zabbix-6.0.1]# netstat -tnlp | grep 10050

 

 

 

遊戲是我的全部圖景,我將演繹所有的遊戲角色,我是每個活著角色的傳奇。   --清

 

 

 

 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29494175/viewspace-2914575/,如需轉載,請註明出處,否則將追究法律責任。

相關文章