Redis 的安装很简单
1:没有其他外部依赖包
wget http://download.redis.io/releases/redis-3.0.0.tar.gz
tar -zxvf redis-3.0.0.tar.gz
cd redis-3.0.0
make
make test
#发现有两个小问题
yum install tcl
#装这个脚本库就可以了
make test
#OK
make PREFIX=/usr/local/redis install
2:安装之后得到几个文件:
:
redis-benchmark :redis的性能检测工具
redis-check-aof:aof日志检查工具
redis-check-dump:检查rbd日志的工具
redis-cli:客户端
redis-server:服务端
3:拷贝复制文件到当前目录
4:启动Redis服务
./bin/redis-server ./redis.conf
5:重新开一个终端
./bin/redis-cli
6:此时如果关掉
重新get name 就会提示:
vi redis.conf
把参数daemonize 改为yes即可。