欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

zabbix-agent在麒麟V10上的安装过程

程序员文章站 2022-06-28 12:35:26
1、安装包下载下载地址:https://sourceforge.net/projects/zabbix/files/zabbix%20latest%20stable/2、安装#增加zabbix用户并设...

1、安装包下载

下载地址:https://sourceforge.net/projects/zabbix/files/zabbix%20latest%20stable/

2、安装

#增加zabbix用户并设置为不可登录状态

shell > useradd -r -s /sbin/nologin zabbix

#将下载包上传到麒麟v10服务器上后解压

shell >tarzxf zabbix-3.0.22.tar.gz

shell > cd zabbix-3.0.22

shell > ./configure --prefix=/usr/local/zabbix_agent --enable-agent 

shell >make install

3、配置

shell >cp /root/zabbix-3.0.22/misc/init.d/fedora/core/zabbix_agentd /etc/init.d/#复制启动脚本

shell >sed -i 's#basedir=/usr/local#basedir=/usr/local/zabbix_agent#' /etc/init.d/zabbix_agentd #修改agent安装路径

 shell >vim /usr/local/zabbix_agent/etc/zabbix_agentd.conf#调整配置文件

logfile=/tmp/zabbix_agentd.log

server=xxx.xxx.xxx.xxx# zabbix server ip (被动模式,客户端被动)

serveractive=127.0.0.1#主动模式,如果使用也填zabbix server ip,不使用可以注释掉

hostname=101.201.142.247#主机名zabbix server添加主机时需要使用

include=/usr/local/zabbix_agent/etc/zabbix_agentd.conf.d/*.conf#加载自定义的监控配置文件

unsafeuserparameters=1 #允许自定义key

4、启动

shell > service zabbix_agentd start

shell > chkconfig --add zabbix_agentd

shell > chkconfig --level35zabbix_agentd on

shell > iptables -a input -s'zabbix server ip'-p tcp --dport10050-j accept #由于是客户端被动模式,所以要开放端口供zabbix server连接

后续可用systemctl start/stop/status zabbix_agentd.service来操作zabbix_agent

到此这篇关于zabbix-agent在麒麟v10上的安装过程的文章就介绍到这了,更多相关zabbix-agent安装麒麟v10内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!