3、监控一台服务器主机
版权声明:原创作品,谢绝转载!否则将追究法律责任。 ————— 作者:kirin
6.1 监控zabbix-server
[root@zabbix-server ~]# yum install zabbix-agent -y
[root@zabbix-server ~]# systemctl start zabbix-agent.service
[root@zabbix-server ~]# systemctl enable zabbix-agent.service
#zabbix-agent安装完成以后就不报警了
6.2 监控其他linux主机
先说一下zabbix-agent的版本与区别
zabbix-agent | 传统的 | 继承之前的老版本,基于c语言开发的 | 独立进程方式运行 |
---|---|---|---|
zabbix-agent2 | 是5. 0之后出现的新功能 | 兼容所有的zabbix-agent,基于go语言开发的,扩展了很多功能、可以监控docker,ceph | 1个进程多线程技术运行。减少资源消耗,赵勇较少CPC资源,能够承受更高并发 |
添加监控前环境准备:
机器:web01
IP地址:10.0.0.7
#安装
[root@web01 ~]# rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-agent2-5.0.8-1.el7.x86_64.rpm
#配置
[root@web01 ~]# vim /etc/zabbix/zabbix_agent2.conf
[root@web01 ~]# cat /etc/zabbix/zabbix_agent2.conf|grep Server=10.0.0.71
Server=10.0.0.71
#启动
[root@web01 ~]# systemctl start zabbix-agent2.service
[root@web01 ~]# systemctl enable zabbix-agent2.service
#接下来就是鼠标点点点的过程了
本文来自博客园,作者:kirin(麒麟),转载请注明原文链接:https://www.cnblogs.com/kirin365/articles/16137712.html