Redis Server Setup on Ubuntu

Blog ยป Redis Server Setup on Ubuntu

Posted on 22 Mar 2011 15:34

If you have maverick:

apt-get install redis-server

Else (lucid, karmic, jaunty):

cd /tmp
curl -O http://redis.googlecode.com/files/redis-2.2.2.tar.gz
tar xzf redis-2.2.2.tar.gz
cd redis-2.2.2
make
 
sudo make install
 
sudo cp utils/redis_init_script /etc/init.d/redis
sudo mkdir /etc/redis
sudo cp redis.conf /etc/redis/6379.conf

Have fun with Redis

If you like this page, please spread the word: diggdel.icio.usFacebook

You can contact me if you have questions or corrections.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License