1.下载包 redis-5.0.7.tar.gz
链接: https://pan.baidu.com/s/1hsDDZ0pZx5L_bZNLubZu7Q 提取码: ghnc
2.安装
[root@henry ~]# tar -xf redis-5.0.7.tar.gz -C /usr/share/ [root@henry ~]# cd /usr/share/redis-5.0.7/ [root@henry redis-5.0.7]# make #安装 [root@henry redis-5.0.7]# mkdir -p /usr/local/reids-5.0.7 #创建redis的使用目录 [root@henry redis-5.0.7]# cd /usr/local/reids-5.0.7 [root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/src/redis-server ./ #拷贝服务端程序 [root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/src/redis-cli ./ #拷贝客户端程序 [root@henry reids-5.0.7]# cp /usr/share/redis-5.0.7/redis.conf ./ #拷贝配置文件 [root@henry reids-5.0.7]# sed -i '/^bind 127.0.0.1$/s/127.0.0.1/192.168.40.10/g' /usr/local/reids-5.0.7/redis.conf #192.168.40.10是你本机IP [root@henry reids-5.0.7]# sed -i '/protected-mode/s/yes/no/g' /usr/local/reids-5.0.7/redis.conf #关闭redis的保护模式 [root@henry reids-5.0.7]# sed -i '/daemonize/s/no/yes/g' /usr/local/reids-5.0.7/redis.conf #开启redis的后台运行模式 [root@henry reids-5.0.7]# sed -i 's/# requirepass foobared/requirepass 123123/g' /usr/local/reids-5.0.7/redis.conf #开启redis的密码并将密码设置成123123 [root@henry reids-5.0.7]# sed -i 's/6379/16379/g' /usr/local/reids-5.0.7/redis.conf #修改redis的监听端口为16379 [root@henry reids-5.0.7]# /usr/local/reids-5.0.7/redis-server /usr/local/reids-5.0.7/redis.conf #启动redis [root@henry reids-5.0.7]# ./redis-cli -h 192.168.40.10 -a 123123 -p 16379 #测试连接 Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe. 192.168.40.10:16379> ping PONG 192.168.40.10:16379>