Skip to content

Commit

Permalink
updated install docs (thanks ltackett)
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen Barnes committed Jul 4, 2011
1 parent 9135feb commit 0d743a5
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions INSTALL.md
Expand Up @@ -11,13 +11,19 @@ SocketStream runs on all UNIX based platforms, including OS X and Linux.


# get Redis # get Redis


wget http://redis.googlecode.com/files/redis-2.2.10.tar.gz # visit http://redis.io for the latest stable version download the latest version from http://redis.io
tar -xvzf redis-2.2.10.tar.gz
cd redis-2.2.4 tar -xvzf redis-2.2.X.tar.gz
cd redis-2.2.X
make make
make test # this is optional, but they recommend it make test # this is optional, but they recommend it
sudo make install sudo make install
env redis-server > /tmp/redis.log 2>&1 & # make redis run in the background
to run in the foreground (and see incoming connections):
redis-server

to run in the background:
env redis-server > /tmp/redis.log 2>&1 &


# get Node.js # get Node.js


Expand Down

0 comments on commit 0d743a5

Please sign in to comment.