-
-
Save LinauxTerminology/304d0a89797c03487a531bdbca37f385 to your computer and use it in GitHub Desktop.
Installation and Configuration of netdata on Ubuntu 18.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##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