Redis单机版安装部署
1.安装依赖C语言依赖
redis使用C语言编写,所以需要安装C语言库
# yum install -y gcc-c++ automake autoconf libtool make tcl
2.上传并解压
redis客户端
把redis-5.0.5.tar.gz上传到/usr/local/tmp中
解压文件
# cd /usr/local/tmp
# tar zxf redis-5.0.5.tar.gz
3.编译并安装
进入解压文件夹
# cd /usr/local/tmp/redis-5.0.5/
编译
# make
安装
# make install PREFIX=/usr/local/redis
4.开启守护进程
复制cd /usr/local/tmp/redis-5.0.5/中redis.conf配置文件
# cp redis.conf /usr/local/redis/bin/
修改配置文件
# cd /usr/local/redis/bin/
# vim redis.conf
把daemonize的值由no修改为yes
5.修改外部访问
在redis5中需要修改配置文件redis.conf允许外部访问。需要修改两处。
注释掉下面
bind 127.0.0.1
#bind 127.0.0.1
protected-mode yes 改成 no
6.启动并测试
启动redis
# ./redis-server redis.conf
重启redis
# ./redis-cli shutdown
# ./redis-server redis.conf
启动客户端工具
# ./redis-cli
在redis5中客户端工具对命令会有提供功能。