Skip to content

Instantly share code, notes, and snippets.

@dlokesh
Created December 20, 2012 13:45
Show Gist options
  • Save dlokesh/4345402 to your computer and use it in GitHub Desktop.
Save dlokesh/4345402 to your computer and use it in GitHub Desktop.
installing tilestream on base centos
yum install git
yum -y install make gcc gcc-c++ kernel-devel
yum install openssl
wget https://github.com/joyent/node/archive/v0.4.9.zip
cd node-0.4.9
./configure --prefix=/opt/node
make -j2
sudo make install
echo 'export NODE_PATH=/opt/node:/opt/node/lib/node_modules' >> ~/.bashrc
echo 'export PATH=$PATH:/opt/node/bin' >> ~/.bashrc
curl https://npmjs.org/install.sh | sh
npm install -g tilestream
npm install -g zlib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment