美文网首页高效运维
在CentOS7上安装Grafana7.1 并添加Zabbix数

在CentOS7上安装Grafana7.1 并添加Zabbix数

作者: 益达_glmsb | 来源:发表于2020-10-13 09:20 被阅读0次

    AI运维软件系统,申请领取ing

    基于AIOps理念研发的新一代运维监大屏

    全盘展示IT运行状态,减轻运维人员的重复性工作量,提高IT系统排错速度,加速运维知识学习积累。


    图片1.png

    Grafana 是一款采用 go 语言编写的开源应用,主要用于大规模指标数据的可视化展现,是网络架构和应用分析中最流行的时序数据展示工具,目前已经支持绝大部分常用的时序数据库。

    开始安装Grafana,

    关闭防火墙及SELINUX:

    [root@localhost ~]#** systemctl stop firewalld.service** [root@localhost ~]# [root@localhost ~]# systemctl disable firewalld.service Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service. Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
    (1)设置开机启用防火墙:systemctl enable firewalld.service

    (2)设置开机禁用防火墙:systemctl disable firewalld.service

    (3)启动防火墙:systemctl start firewalld

    (4)关闭防火墙:systemctl stop firewalld

    (5)检查防火墙状态:systemctl status firewalld

    完成后,开始安装Grafana(或者使用清华大学镜像https://mirrors.tuna.tsinghua.edu.cn/grafana/yum/rpm/),下载:

    [root@localhost ~]# wget https://mirrors.tuna.tsinghua.edu.cn/grafana/yum/rpm/grafana-7.1.0-1.x86_64.rpm

    [root@localhost ~]#

    安装:

    [root@localhost ~]# yum localinstall grafana-7.1.0-1.x86_64.rpm

    [root@localhost ~]#

    启动grafana并设置为开机启动:

    [root@localhost ~]#systemctl start grafana-server.service [root@localhost ~]# systemctl enable grafana-server.service

    使用http://39.99.160.163:3000/login,输入用户名密码,都为admin:

    图片2.png

    输入新密码:


    图片3.png
    图片4.png

    完成安装后,开始添加ZABBIX数据源:

    进入Grafana官网https://grafana.com/grafana/plugins/alexanderzobnin-zabbix-app页面,查看Installation安装方法

    图片5.png

    在Grafana服务器上使用命令grafana-cli plugins install alexanderzobnin-zabbix-app开始安装:

    [root@localhost ~]# grafana-cli plugins install alexanderzobnin-zabbix-app

    [root@ZB ~]# grafana-cli plugins install alexanderzobnin-zabbix-app

    installing alexanderzobnin-zabbix-app @ 3.12.4

    from: https://grafana.com/api/plugins/alexanderzobnin-zabbix-app/versions/3.12.4/download

    into: /var/lib/grafana/plugins

    ✔ Installed alexanderzobnin-zabbix-app successfully

    Restart grafana after installing plugins . <service grafana-server restart>

    [root@localhost ~]#

    然后重启动Grafana服务:

    [root@localhost ~]# systemctl restart grafana-server.service

    完成后进入刚安装成功的Plugins菜单的Zabbix插件,点击【Enable】启动插件,如下图


    图片6.png
    图片7.png

    进入Configuration->Add data source


    图片8.png

    点击【Selcet】


    图片9.png

    配置Data Sources中的Zabbix,输入ZABBIX URL:http://39.99.160.163/zabbix/api_jsonrpc.php,以及输入ZABBIX平台的用户名及密码

    图片10.png

    开启警告,完成后点击【Save&Test】测试并添加,如下图。


    图片11.png

    至此全部安装完成并设置,后期在面板中直接调用ZABBIX数据源即可。


    图片12.png

    相关文章

      网友评论

        本文标题:在CentOS7上安装Grafana7.1 并添加Zabbix数

        本文链接:https://www.haomeiwen.com/subject/tpwmpktx.html