ubuntu 14.04 安装 redis stable

wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
make test
sudo make install

cd utils
sudo ./install_server.sh
sudo service redis_6379 start|stop
# 开发默认启动
sudo update-rc.d redis_6379 defaults

http://redis.io/topics/quickstart

http://happycasts.github.io/089-resque.html

猜你喜欢

转载自flowerwrong.iteye.com/blog/2148961