Skip to content

Instantly share code, notes, and snippets.

View mbrevoort's full-sized avatar

Mike Brevoort mbrevoort

View GitHub Profile
@mbrevoort
mbrevoort / setup-statsd.sh
Created April 29, 2012 23:10 — forked from jasonroelofs/setup-statsd.sh
Turn an Ubuntu 10.10 EC2 into a StatsD/Graphite server
# install git
sudo apt-get --yes install g++ curl libssl-dev apache2-utils
sudo apt-get --yes install git-core
# download the Node source, compile and install it
git clone https://github.com/joyent/node.git ~/node
cd ~/node
./configure
make
sudo make install
# install the Node package manager for later use