2021-09-27

ubuntu18.04安装grafana

安装.deb

sudo apt-get install -y adduser libfontconfig1
wget https://dl.grafana.com/enterprise/release/grafana-enterprise_8.1.5_arm64.deb
sudo dpkg -i grafana-enterprise_8.1.5_arm64.deb

安装前必要操作

sudo apt-get install -y apt-transport-https
sudo apt-get install -y software-properties-common wget
wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -

添加存储库

echo "deb https://packages.grafana.com/enterprise/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list

添加存储库后

sudo apt-get update
sudo apt-get install grafana-enterprise

启动和验证服务

sudo systemctl start grafana-server
sudo systemctl status grafana-server

进入ui

http://ip:3000
默认用户为:admin
默认密码:admin

开始使用

上一篇:Centos7 安装MongoDB


下一篇:python 操作word文档