Skip to content

Instantly share code, notes, and snippets.

@linuxoracledev
Last active November 17, 2021 16:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save linuxoracledev/4e58f29ebce67b1345b72175bb1d09c5 to your computer and use it in GitHub Desktop.
Save linuxoracledev/4e58f29ebce67b1345b72175bb1d09c5 to your computer and use it in GitHub Desktop.
Installation and Configuration of netdata on Ubuntu 18.04 LTS
##Installation
# Run `bash` for shell
bash
# install Netdata directly from GitHub source
bash <(curl -Ss https://my-netdata.io/kickstart.sh)
#Modify the server configuration file
sudo nano /etc/netdata/netdata.conf
#uncomment following lines-
#run as user = netdata
#web files owner = netdata
#web files group = netdata
#restart Netdata service
sudo systemctl restart netdata
#check the status of Netdata
sudo systemctl status netdata
#Acess Netdata web interface http://localhost:19999
##Uninstallation
#change to root
sudo -i
#change working directory in terminal to /usr/libexec/netdata
cd /usr/libexec/netdata
#uninstall
./netdata-uninstaller.sh --yes
#View at youtube https://youtu.be/HmPuYc151Eg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment