安装redis5.0.5

一、安装gcc
yum install gcc-c++

二、安装tcl
wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz //直接下载
tar -xvf tcl8.6.1-src.tar.gz
mv tcl8.6.1 /usr/local
cd /usr/local/tcl8.6.1/unix
./configure
make
make install

三、安装redis
tar -xvf redis-5.0.5.tar #默认redis-5.0.5.tar存放在/media
cd redis-5.0.5
make MALLOC=libc #可能因系统情况不同,不一定需要加“MALLOC=libc”
#"All tests passed without errors!" 算make成功
#建议可以先进行make test

cd src
make install

四、配置redis
cd /opt
mkdir redis
cd redis
mkdir conf data
cp /media/redis-5.0.5/redis.conf /opt/redis/conf
vim /opt/redis/conf/redis.conf
(1)注释掉
bind 127.0.0.1 --> #bind 127.0.0.1
(2)protected-mode yes --> protected-mode no
(3)daemonize no --> daemonize yes
保存修改

五、启动redis服务
redis-server /opt/redis/conf/redis.conf


启动redis服务[图片上传中...(屏幕快照 2019-08-03 23.55.46.png-fd8c8-1564847756679-0)]

六、测试
redis-cli -h 127.0.0.1 -p 6379
set hello world #key "hello" value "world"


安装redis5.0.5_第1张图片
测试

你可能感兴趣的:(安装redis5.0.5)