博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zabbx 监控安装部署及操作
阅读量:5325 次
发布时间:2019-06-14

本文共 2443 字,大约阅读时间需要 8 分钟。

1、zabbix服务端

环境

ip 10.0.0.61 hostname zabbix-server

安装

安装zabbix 3.0   LTS1:配置zabbix yum仓库curl -o zabbix-release-4.0-1.el7.noarch.rpm  https://mirror.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-1.el7.noarch.rpmrpm -ivh zabbix-release-4.0-1.el7.noarch.rpm[root@zabbix-server ~]# cat /etc/yum.repos.d/zabbix.repo[zabbix]name=Zabbix Official Repository - $basearchbaseurl=https://mirror.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/enabled=1gpgcheck=1gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX[zabbix-non-supported]name=Zabbix Official Repository non-supported - $basearch baseurl=https://mirror.tuna.tsinghua.edu.cn/zabbix/non-supported/rhel/7/$basearch/enabled=1gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIXgpgcheck=12:安装zabbix服务端和zabbix-web前端yum install zabbix-server-mysql zabbix-web-mysql  -y3:安装mariadb,创建zabbix库,授权zabbix用户yum install mariadb-server -ysystemctl start mariadbsystemctl enable mariadbmysql_secure_installation回车nyyyymysqlcreate database zabbix character set utf8 collate utf8_bin;grant all privileges on zabbix.* to zabbix@localhost identified by 'zabbix';导入zabbix表结构和初始数据zcat /usr/share/doc/zabbix-server-mysql-3.0.*/create.sql.gz | mysql -uzabbix -p zabbix检查zabbix库是否导入成功mysql -uroot  zabbix -e 'show tables'4:配置启动zabbix-servervi /etc/zabbix/zabbix_server.conf DBHost=localhost DBName=zabbixDBUser=zabbixDBPassword=zabbix启动zabbix-serversystemctl start zabbix-server systemctl enable zabbix-server检查:netstat -lntup5:修改Zabbix前端的PHP配置,并启动httpdvi /etc/httpd/conf.d/zabbix.confphp_value date.timezone Asia/Shanghaisystemctl start httpdsystemctl enable httpd6:前端zabbix-web的安装浏览器:http://10.0.0.61/zabbix后期修改zabbix数据库密码的时候,需要修改的配置文件:/etc/zabbix/web/zabbix.conf.phphttp://10.0.0.61/zabbix/zabbix.php登录的账号密码;Adminzabbix

2、zabbix客户端

本地监控
[root@zabbix-server ~]# rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-agent-4.0.11-1.el7.x86_64.rpm[root@zabbix-server ~]# systemctl start zabbix-agent.service[root@zabbix-server ~]# systemctl enable zabbix-agent.service

远程监控

[root@glusterfs02 ~]# rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-agent-4.0.11-1.el7.x86_64.rpm[root@glusterfs02 ~]# vim /etc/zabbix/zabbix_agentd.conf  98行 Server=10.0.0.61[root@glusterfs02 ~]# systemctl start zabbix-agent.service[root@glusterfs02 ~]# systemctl enable zabbix-agent.service

转载于:https://www.cnblogs.com/jiangyatao/p/11327612.html

你可能感兴趣的文章
shell习题第16题:查用户
查看>>
实验4 [bx]和loop的使用
查看>>
Redis常用命令
查看>>
2018.11.06 bzoj1040: [ZJOI2008]骑士(树形dp)
查看>>
2019.02.15 bzoj5210: 最大连通子块和(链分治+ddp)
查看>>
redis cluster 集群资料
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
微软职位内部推荐-SOFTWARE ENGINEER II
查看>>
centos系统python2.7更新到3.5
查看>>
C#类与结构体究竟谁快——各种函数调用模式速度评测
查看>>
我到底要选择一种什么样的生活方式,度过这一辈子呢:人生自由与职业发展方向(下)...
查看>>
poj 题目分类
查看>>
windows 安装yaml支持和pytest支持等
查看>>
读书笔记:季羡林关于如何做研究学问的心得
查看>>
面向对象的优点
查看>>
套接口和I/O通信
查看>>
阿里巴巴面试之利用两个int值实现读写锁
查看>>
浅谈性能测试
查看>>
Winform 菜单和工具栏控件
查看>>
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>