Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save multiplegeorges/5912153 to your computer and use it in GitHub Desktop.
Save multiplegeorges/5912153 to your computer and use it in GitHub Desktop.
# Get EPEL set up
rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# Instal Dev Tools
yum -y groupinstall 'Development Tools'
# Install Git
yum -y install git
# Install Node
cd /usr/local/src
git clone git://github.com/joyent/node.git
cd node
./configure --prefix=/opt
make
make install
ln -s /opt/node/bin/node /usr/local/bin
ln -s /opt/node/bin/npm /usr/local/bin
# Get StatsD source
cd /opt
git clone git://github.com/etsy/statsd.git
# Graphite / Carbon Dependencies
yum -y install python-devel memcached python-setuptools mysql-devel
yum -y install cairo-devel
yum -y install pycairo-devel
yum -y install bitmap-fonts
pip install django==1.3
pip install django-tagging
pip install python-memcached
pip install carbon
pip install whisper
pip install graphite-web
pip install twisted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment