Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install grafana

# install grafana on a linux (latest OSS release)

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/oss/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list


sudo apt-get update
sudo apt-get install grafana


# start the server with 
grafana-server

# or if you want to have it running as a service
sudo systemctl daemon-reload
sudo systemctl start grafana-server
sudo systemctl status grafana-server
sudo systemctl enable grafana-server.service # if you want to have it running on startup

# Default grafana is running on port: 3000
# login with user: admin | pass: admin

Comment

PREVIOUS NEXT
Code Example
Shell :: how to install zsh in fedora 
Shell :: ping with timestamp 
Shell :: grep find and show lines after 
Shell :: ssh vs gpg keys 
Shell :: iptable port forward 
Shell :: clone a specific branch 
Shell :: uninstall plesk ubuntu 
Shell :: set global git ignore 
Shell :: sudo systemctl restart networking 
Shell :: ubuntu server 20.04 list users 
Shell :: calculate float division 
Shell :: install slack ubuntu 
Shell :: rename all files in a folder with progressive numbers linux 
Shell :: composer uninstall dev require 
Shell :: leap year bash shell 
Shell :: nmap udp scan 
Shell :: list users in ubuntu 
Shell :: install sweetlalert angular 
Shell :: rmdir directory not empty windows 
Shell :: unix set current time in file name 
Shell :: install office 365 in ubuntu 
Shell :: terminator download 
Shell :: installing docker on amazon linux 
Shell :: how to check jibri version 
Shell :: uninstall node 
Shell :: aws folder permission denied 
Shell :: linux monitor outgoing https requests 
Shell :: how to push local repo to github 
Shell :: remove folder from repo but keep locally 
Shell :: ssh-add git 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =