Graphite: Difference between revisions
From charlesreid1
(Created page with "Also see: * Graphite/Old * Graphite/Old2 =Setting up= ==Debian== See instructions here: https://graphite.readthedocs.io/en/latest/install-pip.html#installing-in-the...") |
(→Debian) |
||
| Line 11: | Line 11: | ||
<pre> | <pre> | ||
apt-get install python3-cffi | apt-get install python3-cffi | ||
</pre> | |||
Graphite installs to /opt (a common location for databases), so ensure we have permission to create directories there: | |||
<pre> | |||
sudo chown charles:root /opt/ | |||
</pre> | </pre> | ||
| Line 17: | Line 23: | ||
<pre> | <pre> | ||
pip3 install --user --no-binary=:all: https://github.com/graphite-project/whisper/tarball/master | pip3 install --user --no-binary=:all: https://github.com/graphite-project/whisper/tarball/master | ||
pip3 install --user --no-binary=:all: https://github.com/graphite-project/carbon/tarball/master | pip3 install --user --no-binary=:all: https://github.com/graphite-project/carbon/tarball/master | ||
pip3 install --user --no-binary=:all: https://github.com/graphite-project/graphite-web/tarball/master | pip3 install --user --no-binary=:all: https://github.com/graphite-project/graphite-web/tarball/master | ||
</pre> | </pre> | ||
Revision as of 18:43, 29 January 2018
Also see:
Setting up
Debian
See instructions here: https://graphite.readthedocs.io/en/latest/install-pip.html#installing-in-the-default-location
apt-get install python3-cffi
Graphite installs to /opt (a common location for databases), so ensure we have permission to create directories there:
sudo chown charles:root /opt/
Now install the three parts of graphite: whisper, carbon, and graphite-web:
pip3 install --user --no-binary=:all: https://github.com/graphite-project/whisper/tarball/master pip3 install --user --no-binary=:all: https://github.com/graphite-project/carbon/tarball/master pip3 install --user --no-binary=:all: https://github.com/graphite-project/graphite-web/tarball/master