step1: 解压:tar -zxvf redis-3.0.5.tar.gz -C /opt/module/
step2 : [root@bigdata121 redis-3.0.5]#
进入redis-3.0.5目录 make test (提前安装gcc:yum install gcc)
step3: make PREFIX=/opt/module/redis install
step4 : [root@bigdata121 redis-3.0.5]# cp redis.conf ../redis
step5: 查看redis bin目录
Redis的命令脚本:
- redis-benchmark 性能测试工具
- redis-check-aof 检查AOF日志
- redis-check-dump 检查RDB日志
- redis-cli 启动命令行客户端
- redis-sentinel
- redis-server 启动Redis服务
修改redis.conf 文件
daemonize yes 默认为false
step6:配置环境变量
[root@bigdata121 /]# vi /etc/profile 编辑添加如下
#REDIS_HOME
export REDIS_HOME=/opt/module/redis
export PATH=$PATH:$NODE_HOME/bin
step7:启动redis
step8: 用ps 查看进程
step9: 然后
[root@bigdata121 bin]# ./redis-cli
step10 : 插入值并取值 测试