Skip to content

Instantly share code, notes, and snippets.

@organicaudio
Last active March 16, 2022 18:32
Show Gist options
  • Save organicaudio/7685897242a2ab0e47ff553e4ec2387a to your computer and use it in GitHub Desktop.
Save organicaudio/7685897242a2ab0e47ff553e4ec2387a to your computer and use it in GitHub Desktop.
Installing Netdata on Ubuntu 14.04
What is Netdata?
Get control of your Linux servers
Simple. Effective. Awesome.
Unparalleled insights, in real-time, of everything happening on your Linux systems and applications, with stunning,
interactive web dashboards and powerful performance and health alarms.
official site > https://my-netdata.io
live demos > https://my-netdata.io/#demosites
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Step 1 - Prerequisites
sudo apt-get update
sudo apt-get install zlib1g-dev gcc make git autoconf autogen automake pkg-config uuid-dev
# Step 2 - Install Netdata
git clone https://github.com/firehol/netdata.git
cd netdata
sudo ./netdata-installer.sh
# Step 3 - Bootup Service
sudo nano /etc/init/netdata.conf
# paste every thing between the lines
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# netdata
description "NetData - Real-Time Performance Monitoring Daemon"
author "Samiux http://samiux.blogspot.com"
start on runlevel [2345]
stop on runlevel [!2345]
expect fork
exec echo 1 >/sys/kernel/mm/ksm/run
exec echo 1000 >/sys/kernel/mm/ksm/sleep_millisecs
exec /usr/sbin/netdata
respawn
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Step 4 - Service Commands & URL
sudo start netdata
sudo stop netdata
sudo restart netdata
http://127.0.0.1:19999
# Step 5 - How to Upgrade/Update (someday)
cd netdata
git pull
sudo ./netdata-installer.sh
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
Source: https://samiux.blogspot.ca/2016/04/howto-netdata-on-ubuntu-14044-lts.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment