本文共 1502 字,大约阅读时间需要 5 分钟。
1、下载安装zabbix软件
1 2 3 4 5 6 7 | [root@pos src] # wget http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm ase-3.4-2.el7.noarch.rpm [root@pos src] # rpm -ivh zabbix-release-3.4-2.el7.noarch.rpm warning: zabbix-release-3.4-2.el7.noarch.rpm: Header V4 RSA /SHA512 Signature, ke y ID a14fe591: NOKEY Preparing... ################################# [100%] Updating / installing... 1:zabbix-release-3.4-2.el7 ################################# [100%] |
2、安装zabbix-agent
1 | [root@pos src] # yum install -y zabbix-agent |
3、修改zabbix_agentd.conf配置文件
主动模式:客户端会主动把监控数据汇报给服务端,服务端只负责接收即可;
被动模式:服务器端会主动连接客户端获取监控项目数据,客户端被动地接受连接,并把监控信息传递给服务端;
当客户端数量非常多时,建议使用主动模式,这样可以降低服务端的压力。
1 2 3 4 | [root@pos src] # vi /etc/zabbix/zabbix_agentd.conf Server=192.168.100.1 ##定义被动模式的服务端IP ServerActive=192.168.100.1 ##定义主动模式的服务端IP Hostname=TestServer-001 ##定义主机名 |
4、启动验证服务
1 2 3 4 | [root@pos src] # systemctl start zabbix-agent [root@pos src] # systemctl enable zabbix-agent Created symlink from /etc/systemd/system/multi-user .target.wants /zabbix-agent .service to /usr/lib/systemd/system/zabbix-agent .service. [root@pos src] # netstat -lnp|grep zabbix ##被监控的端口为10050 |
Tips:
当忘记登录口令时,可以进入数据库更改。
1 2 3 4 5 6 7 8 9 10 | # mysql -uroot > show databases; > use zabbix; > show tables; > desc users ; mysql> update users set passwd =md5( '123456' ) where alias = 'Admin' ; Query OK, 1 row affected (0.01 sec) Rows matched: 1 Changed: 1 Warnings: 0 |