grafana安装升级部署

系统环境:Centos 7/Centos 6

安装grafana
1.安装
[root@localhost soft]# rpm -ivh grafana-8.0.1-1.x86_64.rpm
warning: grafana-8.0.1-1.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 24098cb6: NOKEY
error: Failed dependencies:
urw-fonts is needed by grafana-8.0.1-1.x86_64
[root@localhost soft]# yum -y install urw-fonts

2.启动之
[root@localhost soft]# systemctl start grafana-server
查看3000端口
[root@localhost soft]# ss -nlp|grep 3000
tcp LISTEN 0 128 :::3000 :::* users:(("grafana-server",pid=16246,fd=8))

3.界面访问
http://192.168.1.118:3000/login
初始账号密码为admin/admin
登陆要求修改密码,我这里修改为admin123

升级
1.下载要升级的rpm包
wget https://dl.grafana.com/oss/release/grafana-8.3.3-1.x86_64.rpm

下载地址如下:

https://grafana.com/grafana/download
https://grafana.com/grafana/download?edition=oss
选择oss版本:

image.png

2.停掉原来的服务
[root@localhost soft]# systemctl stop grafana-server

3.直接升级
rpm -Uvh grafana-8.3.3-1.x86_64.rpm

这里安装后会自动启动了,不需要手工启动

4.升级后可以回退

rpm -Uvh grafana-8.3.3-1.x86_64.rpm ##升级到8.1.3
rpm -Uvh --oldpackage grafana-8.0.1-1.x86_64.rpm ##回退到原来版本

5.配置插件免签署:
在配置文件最下面添加插件免签署
vi /etc/grafana/grafana.ini

[plugins]
allow_loading_unsigned_plugins = simpod-json-datasource,alexanderzobnin-zabbix-datasource,grafana-piechart-panel

升级之前的数据可以保留。

你可能感兴趣的:(grafana安装升级部署)