Skip to content

Instantly share code, notes, and snippets.

@sintaxi
Last active August 29, 2015 14:04
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 sintaxi/41fca9f94323dcf68836 to your computer and use it in GitHub Desktop.
Save sintaxi/41fca9f94323dcf68836 to your computer and use it in GitHub Desktop.
Debian configuration

basics

apt-get update && apt-get upgrade
apt-get install build-essential

install node & npm

cd /src
wget http://nodejs.org/dist/v0.10.29/node-v0.10.29.tar.gz
tar -zxvf node-v0.10.29.tar.gz
cd node-v0.10.29
./configure
make
make install
cd

install mon

(mkdir /tmp/mon && cd /tmp/mon && curl -L# https://github.com/visionmedia/mon/archive/master.tar.gz | tar zx --strip 1 && make     install && rm -rf /tmp/mon)

install haproxy

cd /src
wget http://www.haproxy.org/download/1.5/src/haproxy-1.5.2.tar.gz
tar -zxvf haproxy-1.5.2.tar.gz
cd haproxy-1.5.2
make TARGET=generic;
make install
cd

install redis

cd /src
wget http://download.redis.io/releases/redis-2.8.13.tar.gz
tar -zxvf redis-2.8.13.tar.gz
cd redis-2.8.13.tar.gz
make
make install
cd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment