安装Redis 6.0.5之前的准备工作
- 1、安装依赖包:yum install gcc gcc-c++ make
- 2、下载Redis 6.0.5源码:wget http://download.redis.io/releases/redis-6.0.5.tar.gz
- 3、解压:tar -zxvf redis-6.0.5.tar.gz
- 4、进入解压后的文件夹:cd redis-6.0.5
编译安装Redis 6.0.5
- 1、编译:make
- 2、安装:make install
- 3、拷贝Redis配置文件:cp redis.conf /etc/
- 4、修改Redis配置文件:vim /etc/redis.conf
- 5、修改daemonize为yes:daemonize yes
- 6、将Redis加入开机启动:echo "exec /usr/local/bin/redis-server /etc/redis.conf" >> /etc/rc.local
启动、停止Redis 6.0.5服务
- 1、启动Redis:/usr/local/bin/redis-server /etc/redis.conf
- 2、停止Redis:/usr/local/bin/redis-cli shutdown
注意事项
- 1、安装Redis之前,需要安装gcc、gcc-c++、make等依赖包,否则会出现编译错误;
- 2、Redis配置文件需要修改daemonize为yes,否则Redis无法后台运行;
- 3、Redis需要将Redis加入开机启动,否则每次重启服务器都需要手动启动;
- 4、Redis服务停止的时候,需要使用命令/usr/local/bin/redis-cli shutdown,否则会出现数据丢失的情况;
本文链接:http://task.lmcjl.com/news/1516.html