标签:bug lin -- 邮件 list zabbix部署 conf selinux sed
环境说明环境 | IP | 需要安装的程序 |
---|---|---|
客户端 | 192.168.24.188 | zabbix_agentd |
1.关闭防火墙和SELINUX
[root@linfan ~]# systemctl stop firewalld
[root@linfan ~]# systemctl disable firewalld
[root@linfan ~]# sed -ri ‘s/(SELINUX=.*)/\1disabled/g‘ /etc/selinux/config
[root@linfan ~]# setenforce 0
安装依赖包
[root@linfan ~]# yum -y install net-snmp-devel libevent-devel
下载zabbix
[root@linfan ~]# cd /usr/src/
[root@linfan src]# wget https://nchc.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/3.4.12/zabbix-3.4.12.tar.gz
解压
[root@linfan src]# tar xf zabbix-3.4.12.tar.gz
[root@linfan src]# ls
apr-1.6.3 apr-util-1.6.1.tar.bz2 mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz zabbix-3.4.12
apr-1.6.3.tar.bz2 debug php-7.2.8 zabbix-3.4.12.tar.gz
apr-util-1.6.1 kernels php-7.2.8.tar.xz
创建zabbix用户和组
[root@linfan ~]# groupadd -r zabbix
[root@linfan ~]# useradd -r -g zabbix -M -s /sbin/nologin zabbix
安装编译zabbix
[root@linfan src]# cd /usr/src/zabbix-3.4.12
[root@linfan zabbix-3.4.12]# ./configure --enable-agent
[root@linfan zabbix-3.4.12]# make install
修改客户端配置文件
[root@linfan zabbix-3.4.12]# vim /usr/local/etc/zabbix_agentd.conf
//将以下三处配置为服务端IP地址
Server=192.168.24.168
ServerActive=192.168.24.168
Hostname=192.168.24.168
启动agentd
[root@linfan ~]# zabbix_agentd
[root@linfan ~]# ss -natl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 *:22 *:*
LISTEN 0 100 127.0.0.1:25 *:*
LISTEN 0 128 *:10050 *:*
LISTEN 0 128 :::22 :::*
LISTEN 0 100 ::1:25 :::*
1.建主机组
2.把主机加入相应的主机组
3.配置主机
4.配置监控项
5.配置警告信息
6.发邮件
标签:bug lin -- 邮件 list zabbix部署 conf selinux sed
原文地址:http://blog.51cto.com/13858192/2162783