当前位置:网站首页>zabbix 代理服务器 与 zabbix-snmp 监控
zabbix 代理服务器 与 zabbix-snmp 监控
2022-07-06 13:55:00 【萌褚】
镜像下载、域名解析、时间同步请点击 阿里云开源镜像站
一、部署zabbix 代理服务器
分布式监控的作用:
- 分担 server 的集中式压力
- 解决多机房之间的网络延时问题
bsystemctl disable --now firewalldsetenforce 0hostnamectl set-hostname zbx-proxy
1.1、设置 zabbix 的下载源,安装 zabbix-proxy
rpm -ivh https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm cd /etc/yum.repos.dsed -i 's#http://repo.zabbix.com#https://mirrors.aliyun.com/zabbix#' /etc/yum.repos.d/zabbix.repoyum install -y zabbix-proxy-mysql zabbix-get
1.2、安装 zabbix 所需的数据库
yum install -y mariadb-server mariadbsystemctl enable --now mariadbmysql_secure_installation #初始化数据库,并设置密码,如 abc123
1.3、添加数据库用户,以及 zabbix 所需的数据库信息
mysql -u root -pabc123CREATE DATABASE zabbix_proxy character set utf8 collate utf8_bin;GRANT all ON zabbix_proxy.* TO 'zabbix'@'%' IDENTIFIED BY 'zabbix';flush privileges;
1.4、导入数据库信息
rpm -ql zabbix-proxy-mysql #查询 sql 文件的位置zcat /usr/share/doc/zabbix-proxy-mysql-5.0.15/schema.sql.gz | mysql -uroot -pabc123 zabbix_proxy
1.5、修改 zabbix-proxy 配置文件
vim /etc/zabbix/zabbix_proxy.confServer=192.168.80.20 #30行,指定 zabbix 服务端的 IP 地址Hostname=zbx-proxy #49行,指定当前 zabbix 代理服务器的主机名DBPassword=zabbix #196行,指定当前数据库 zabbix 用户的密码
1.6、启动 zabbix-proxy
systemctl start zabbix-proxysystemctl enable zabbix-proxy
1.7、在所有主机上配置 hosts 解析
vim /etc/hosts192.168.80.20 zbx-server192.168.80.30 zbx-agent01192.168.80.13 zbx-proxy
1.8、在 Web 页面配置 agent 代理
点击左边菜单栏【配置】中的【动作】,勾选自动注册规则,点击 禁用点击左边菜单栏【配置】中的【主机】,勾选原有的客户端主机,点击 删除
点击左边菜单栏【管理】中的【agent代理程序】,点击【创建代理】【agent代理程序名称】设置为 zbx-proxy【系统代理程序模式】选择 主动式【代理地址】设置为 192.168.130.131点击 【添加】
二、配置 agent 使用 proxy
2.1、在客户端修改 agent2 配置文件
vim /etc/zabbix/zabbix_agent2.conf......Server=192.168.80.13 #80行,指定 zabbix 代理服务器的 IP 地址ServerActive=192.168.80.13 #120行,指定 zabbix 代理服务器的 IP 地址
2.2、在 Web 页面配置
点击左边菜单栏【配置】中的【主机】,点击【创建主机】【主机名称】设置成 zbx-agent01【可见的名称】设置成 zbx-agent01【群组】选择 Linux server【Interfaces】的【IP地址】设置成 192.168.80.30【由agent代理程序监测】选择 zbx-proxy再点击上方菜单栏【模板】【Link new tamplates】搜索 Linux ,选择 Template OS Linux by Zabbix agent点击 【添加】
2.3、分别在客户端和代理服务器上重启服务
systemctl restart zabbix-agent2systemctl restart zabbix-proxy点击左边菜单栏【配置】中的【主机】刷新,查看客户端主机监控状态正常在服务端查看日志tail -f /var/log/zabbix/zabbix_proxy.log
三、设置 zabbix-snmp监控
SNMP,简单网络管理协议
3.1、服务端安装 snmp 监控程序
yum install -y net-snmp net-snmp-utils
3.2、修改 snmp 的配置文件,并启动服务
vim /etc/snmp/snmpd.conf......view systemview included .1 #57行,添加此配置systemctl start snmpd
3.3、使用 snmp 命令测试
snmpwalk -v 2c -c public 127.0.0.1 sysnameSNMPv2-MIB::sysName.0 = STRING: zbx-server-------------------------------------------------------–v 1|2c|3:指定SNMP协议版本–c:指定共同体字符串sysname:为 snmp 的 key-------------------------------------------------------
3.4、在 Web 页面配置 snmp 方式监控
点击左边菜单栏【配置】中的【主机】,点击 Zabbix server【Interfaces】点击【添加】选择 SNMP ,端口设置成 161点击上方菜单栏【模板】,【链接的模板】中的所有 agent 模板选择取消链接并清理再在【Link new templates】中搜索 Linux SNMP,选择 Template OS Linux SNMP点击 【更新】,等待一段时间后 Zabbix server 的可用性就变成了 SNMP 监控方式。
边栏推荐
- C how to set two columns comboboxcolumn in DataGridView to bind a secondary linkage effect of cascading events
- Search map website [quadratic] [for search map, search fan, search book]
- The relationship between root and coefficient of quadratic equation with one variable
- Broadcast variables and accumulators in spark
- 20 large visual screens that are highly praised by the boss, with source code templates!
- [go][reprint]vscode run a HelloWorld example after configuring go
- Explain ESM module and commonjs module in simple terms
- Digital transformation takes the lead to resume production and work, and online and offline full integration rebuilds business logic
- [Chongqing Guangdong education] Tianjin urban construction university concrete structure design principle a reference
- Realization of epoll reactor model
猜你喜欢
2020 Bioinformatics | GraphDTA: predicting drug target binding affinity with graph neural networks
guava:Collections.unmodifiableXXX创建的collection并不immutable
GNN,请你的网络层数再深一点~
JPEG2000-Matlab源码实现
Shake Sound poussera l'application indépendante de plantation d'herbe "louable", les octets ne peuvent pas oublier le petit livre rouge?
GPS from entry to abandonment (XVII), tropospheric delay
小满网络模型&http1-http2 &浏览器缓存
Leetcode topic [array] -118 Yang Hui triangle
【10点公开课】:视频质量评价基础与实践
LeetCode:1189. The maximum number of "balloons" -- simple
随机推荐
嵌入式常用计算神器EXCEL,欢迎各位推荐技巧,以保持文档持续更新,为其他人提供便利
Univariate cubic equation - relationship between root and coefficient
Oracle Performance Analysis 3: introduction to tkprof
[Chongqing Guangdong education] Tianjin urban construction university concrete structure design principle a reference
中国白酒的5场大战
C# 如何在dataGridView里设置两个列comboboxcolumn绑定级联事件的一个二级联动效果
Leetcode learning records (starting from the novice village, you can't kill out of the novice Village) ---1
Some problems about the use of char[] array assignment through scanf..
设置状态栏样式Demo
MySQL related terms
GPS从入门到放弃(十二)、 多普勒定速
GPS from getting started to giving up (XIII), receiver autonomous integrity monitoring (RAIM)
Problems in the process of opencv300 cmake generating project
What can one line of code do?
Is it important to build the SEO foundation of the new website
Qt | UDP广播通信、简单使用案例
【MySQL】Online DDL详解
Make menuconfig has a recipe for target 'menuconfig' failed error
GPS從入門到放弃(十三)、接收機自主完好性監測(RAIM)
美国科技行业结束黄金时代,芯片求售、裁员3万等哀声不断