目 录CONTENT

文章目录

zabbix监控配置流程

ZiChen D
2021-09-29 / 0 评论 / 0 点赞 / 564 阅读 / 4,218 字 / 正在检测是否收录...

zabbix配置流程详解

zabbix监控配置流程详解
	开发人员要加监控
		让开发人员提供获取监控新的的方式
	运营人员(提需求的人)要加监控
		让运营人员问开发人员要获取监控信息的方式
	运维人员要加监控

配置流程步骤

 配置监控的步骤:
	添加主机组
	添加主机并加到主机组:
		安装agent
			创建用户zabbix
			编译安装
			配置 zabbix_agentd.conf,设置zabbix_server的ip,hostname的值
			启动服务
		在web界面添加主机
	添加监控项
		手动配置监控项
		通过模板配置监控项
	添加触发器
	配置用户媒介
	添加动作
	手动触发并验证
[root@agent ~]# systemctl disable --now firewalld
[root@agent ~]# setenforce 0
setenforce: SELinux is disabled

[root@agent src]# useradd -r -M -s /sbin/nolongin zabbix

[root@agent src]# tar xf zabbix-5.4.4.tar.gz 
[root@agent src]# cd zabbix-5.4.4/

[root@agent zabbix-5.4.4]# yum -y install vim wget gcc gcc-c++ make pcre-devel openssl openssl-devel

[root@agent zabbix-5.4.4]# ./configure --enable-agent

***********************************************************
*            Now run 'make install'                       *
*                                                         *
*            Thank you for using Zabbix!                  *
*              <http://www.zabbix.com>                    *
***********************************************************
[root@agent zabbix-5.4.4]# make install

[root@wxy ~]# tr -dc A-Za-z < /dev/urandom | head -c 8 |xargs
[root@agent ~]# cd /usr/local//etc/
[root@agent etc]# ls
zabbix_agentd.conf  zabbix_agentd.conf.d

[root@agent etc]# vim zabbix_agentd.conf
Server=192.168.159.3
ServerActive=192.168.159.3
Hostname=RAXAnDwE

[root@agent etc]# zabbix_agentd 
[root@agent etc]# ss -antl
State                     Recv-Q                    Send-Q                                       Local Address:Port                                         Peer Address:Port                    
LISTEN                    0                         128                                                0.0.0.0:10050                                             0.0.0.0:*                       
LISTEN                    0                         128                                              127.0.0.1:9000                                              0.0.0.0:*                       
LISTEN                    0                         128                                                0.0.0.0:111                                               0.0.0.0:*                       
LISTEN                    0                         32                                           192.168.122.1:53                                                0.0.0.0:*                       
LISTEN                    0                         128                                                0.0.0.0:22                                                0.0.0.0:*                       
LISTEN                    0                         5                                                127.0.0.1:631                                               0.0.0.0:*                       
LISTEN                    0                         80                                                       *:3306                                                    *:*                       
LISTEN                    0                         128                                                   [::]:111                                                  [::]:*                       
LISTEN                    0                         128                                                      *:80                                                      *:*                       
LISTEN                    0                         128                                                   [::]:22                                                   [::]:*                                             

Web界面创建主机

0

评论区