博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
zabbix+grafana监控
阅读量:6831 次
发布时间:2019-06-26

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

一、zabbix安装

配置添加zabbix的yum源
wget -O /etc/yum.repos.d/CentOS-Base.repo 
wget -O /etc/yum.repos.d/epel.repo 
rpm -ivh 
清除缓存
yum clean all
创建缓存
yum makecache
安装zabbix初始化mysql、zabbix数据库
yum -y install zabbix-server-mysql zabbix-web-mysql mariadb-server zabbix-agent
启动mariadb
systemctl start mariadb
systemctl enable mariadb
mysql_secure_installation
create database zabbix character set utf8 collate utf8_bin;
grant all privileges on zabbix.* to zabbix@localhost identified by '123456';
zcat /usr/share/doc/zabbix-server-mysql-4.0.6/create.sql.gz|mysql -uzabbix -p123456 zabbix
配置zabbix
vim /etc/httpd/conf.d/zabbix.conf
修改时间
php_value date.timezone Asia/Shanghai
启动httpd并设置为开机自启
systemctl start httpd
systemctl enable httpd
修改zabbix_server密码
vim /etc/zabbix/zabbix_server.conf
DBPassword=123456
启动zabbix-server并设置为开机自启
systemctl start zabbix-server
systemctl enable zabbix-server
添加server_agent配置文件server的ip
vim /etc/zabbix/zabbix_agentd.conf
Server=zabbix_server的ip
启动zabbix-agent并设置为开机自启
systemctl start zabbix-agent
systemctl enable zabbix-agent
访问zabbix页面 ip/zabbix
修改zabbix server 的ip地址
zabbix+grafana监控
二、安装配置Grafana
下载安装包
wget
安装编译环境
yum install initscripts fontconfig
解压安装grafana
rpm -ivh grafana-4.2.0-1.x86_64.rpm
启动并设置为开机自启
systemctl start grafana-server.service
systemctl enable grafana-server.service
访问grafana
(用户名和密码都是admin)
zabbix+grafana监控
安装插件
zabbix+grafana监控
安装grafana-cli
grafana-cli plugins install alexanderzobnin-zabbix-app
重启grafana_server
systemctl restart grafana-server
连接zabbix,写上zabbix的ip
zabbix+grafana监控
添加用户名、密码、版本
zabbix+grafana监控
创建仪表盘
zabbix+grafana监控
监控
zabbix+grafana监控

转载于:https://blog.51cto.com/14241151/2378603

你可能感兴趣的文章
java多线程入门学习(一)
查看>>
多线程间的通讯之等待唤醒机制
查看>>
Shell中整数比較
查看>>
IOS应用内购(一)内购的种类
查看>>
canvas图形处理和进阶用法
查看>>
传输PDF文档的好帮手
查看>>
更新部分屏幕内容
查看>>
The server does not support version 3.0 of the J2EE Web module specification
查看>>
SQL Server内存
查看>>
MPU6050带字符驱动的i2c从设备驱动2
查看>>
深入探析c# Socket
查看>>
Python 全集变量
查看>>
1. 请问PHP里的ECHO是什么意思 ?请问PHP里的ECHO是什么意思???有什么作用???又应该怎么使用???...
查看>>
ES6,数组遍历
查看>>
如何把浏览器不信任的网址设置为可信任的网点
查看>>
脚本加密http://www.datsi.fi.upm.es/~frosal/sources/
查看>>
Cocos Studio is EOL'd
查看>>
linux shell下16进制 “\uxxxx” unicode to UTF-8中文
查看>>
【WPF】树形结构TreeView的用法(MVVM)
查看>>
Go -- 读取文件内容
查看>>