Grafana安装ubuntu
安装系统为Ubuntu,配置grafana apt源bash
# sudo add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"
添加gpg秘钥spa
# wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -
更新apt源而且安装grafanacode
# sudo apt-get update # sudo apt-get install grafana
注:在ubuntu老的版本可能须要安装apt-transport-https
server
# sudo apt-get install -y apt-transport-https
启动grafana服务并启动blog
加入开机自启动 # systemctl enable grafana-server 启动grafana服务 # systemctl start grafana-server