Last active
July 25, 2016 12:26
-
-
Save superzadeh/9dcfcb77f2d384ebc451fd70e210a80e to your computer and use it in GitHub Desktop.
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
cd /tmp | |
wget https://dl.influxdata.com/influxdb/releases/influxdb_0.13.0_amd64.deb | |
sudo dpkg -i influxdb_0.13.0_amd64.deb | |
# Start the service | |
sudo service influxdb start | |
wget https://grafanarel.s3.amazonaws.com/builds/grafana_3.1.0-1468321182_amd64.deb | |
# Fix for upstart on Ubuntu on Windows 10 | |
cat > /usr/sbin/policy-rc.d <<EOF | |
#!/bin/sh | |
exit 101 | |
EOF | |
chmod +x /usr/sbin/policy-rc.d | |
dpkg-divert --local --rename --add /sbin/initctl | |
ln -s /bin/true /sbin/initctl | |
# Install required packages for Grafana | |
sudo apt-get install -y adduser libfontconfig | |
sudo dpkg -i grafana_3.1.0-1468321182_amd64.deb | |
# Start the service | |
sudo service grafana-server start | |
# Configure Grafana to start at boot time | |
sudo update-rc.d grafana-server defaults 95 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment