Skip to content

Instantly share code, notes, and snippets.

@wangshijun
Forked from oyiptong/graphite.md
Created November 6, 2013 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wangshijun/7328806 to your computer and use it in GitHub Desktop.
Save wangshijun/7328806 to your computer and use it in GitHub Desktop.

This is a general overview (from memory) of the steps I used to install graphite (http://graphite.wikidot.com) on OS X Lion. I think the steps are in order but YMMV. Please fork and fix if you find an error.

Install Python 2.7.2

curl -kL http://xrl.us/pythonbrewinstall | bash
echo '[[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc' >> ~/.bashrc
[[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc
pythonbrew install 2.7.2
pythonbrew use 2.7.2
pythonbrew venv create graphite
pythonbrew venv use graphite

Check your env

$ python --version
Python 2.7.2

$ type python
python is /Users/oyiptong/.pythonbrew/pythons/Python-2.7.2/bin/python

$ file `which python`
/Users/oyiptong/.pythonbrew/pythons/Python-2.7.2/bin/python: Mach-O 64-bit executable x86_64

Install Cairo

brew install cairo

Instally py2cairo [CRAZY TRAIN]

git clone git://git.cairographics.org/git/py2cairo
# Open wscript and below `env = ctx.env` add `env.append_unique('CFLAGS', ['-arch', 'x86_64'])`

export PYTHONPATH=/Users/oyiptong/.pythonbrew/pythons/Python-2.7.2
export PATH=/Users/oyiptong/.pythonbrew/pythons/Python-2.7.2/bin:$PATH
export LD_LIBRARY_PATH=/Users/oyiptong/.pythonbrew/pythons/Python-2.7.2/:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=/Users/oyiptong/.pythonbrew/pythons/Python-2.7.2/lib:$LD_LIBRARY_PATH
export LINKFLAGS='-search_dylibs_first -L /Users/oyiptong/.pythonbrew/pythons/Python-2.7.2/lib'
export ARCHFLAGS='-arch x86_64'
export CC=/usr/bin/gcc
export PKG_CONFIG_PATH=/usr/local/Cellar/cairo/1.10.2/lib/pkgconfig

python waf clean
python waf configure --libdir=/Users/oyiptong/.pythonbrew/venvs/Python-2.7.2/graphite/lib
python waf build
python waf install

Install Graphite and Dependencies

pip install carbon
pip install whisper
pip install django==1.3.1
pip install django-tagging
pip install graphite-web

Create default database

cd /opt/graphite/webapp/graphite
python manage.py syncdb

Move example configs

cd /opt/graphite/conf
cp storage-schemas.conf.example storage-schemas.conf
cp carbon.conf.example carbon.conf

Start carbon

./bin/carbon-cache.py start

Start Graphite

./bin/run-graphite-devel-server.py /opt/graphite

Hope like hell it works

http://localhost:8080

If it works correclty you should see a black image with "No Data" in the Graphite Composer. If you see a broken image, it's probably something to do with py2cairo and cairo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment