Redis 单机环境搭建
$ sudo yum install gcc++ ### 确认gcc
$ tar -zxvf ~/doc/redis-3.2.11.tar.gz -C ~/tools/
$ ln -s ~/tools/redis-3.2.11 ~/tools/redis
$ cd ~/tools/redis
$ make
$ sudo make install
$ redis-cli -v ### 测试
配置
$ mkdir ~/backup/redis
$ cp ~/tools/redis/redis.conf ~/tools/redis/sentinel.conf ~/backup/redis/
$ mkdir ~/tmps/redis-tmp
$ vim ~/tools/redis/redis.conf
bind 0.0.0.0
protected-mode no #允许远程登录
daemonize yes #开启守护进程
dir /home/user000/tmps/redis-tmp #设置保存rdb、aof等的路径
启动测试
$ redis-server ~/tools/redis/redis.conf
$ redis-cli -p 6379
$ ping