1、下载最新版本redis: 选择/usr/local/redis/ wget http://redis.googlecode.com/files/redis-2.4.17.tar.gz wget http://download.redis.io/releases/redis-2.8.6.tar.gz
wget http://download.redis.io/redis-stable.tar.gz
解压: tar zxvf redis-2.8.6.tar.gz cd redis-2.8.6
make make install --该命令作用会把redis一些执行文件同步到/usr/local/bin/目录 比如/usr/local/bin/redis-server 安装成功后,会自动复制 redis 可执行文件到环境变量中 redis-cli:客户端程序 redis-server:服务程序 redis-check-dump:本地数据库检查 redis-check-aof:更新日志检查 redis-benchmark:性能测试,用以模拟同时由N个客户端发送 M 个 SETs/GETs 查询 (类似于 Apache 的 ab 工具) 启动服务: redis-server redis.conf 关闭服务: redis-cli shutdown 测试是否正常: redis-cli set testkey testcontent get testkey
----------------------------------------------
如果在"make test"遇到:
cd src && make test
make[1]: Entering directory `/emoney/src/redis/redis-stable/src'
You need tcl 8.5 or newer in order to run the Redis test
make[1]: *** [test] Error 1
可以尝试以下办法:
wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz tar xzvf tcl8.6.1-src.tar.gz cd tcl8.6.1/unix/ ./configure make make install