1、下载redis安装包
wget http://download.redis.io/releases/redis-4.0.6.tar.gz
2、解压安装包
tar -zxvf redis-4.0.6.tar.gz
3、安装gcc依赖
yum install gcc
4、进入安装包
cd redis-4.0.6
5、安装编译(注意大小写)
make MALLOC=libc
6、启动
修改redis.conf文件
将
daemonize no
修改成
daemonize yes
增加注释
bind 127.0.0.1 修改为 #bind 127.0.0.1
关闭保护模式
protected-mode yes 修改为 protected-mode no
启动redis
进入文件的src目录
./redis-server ../redis.conf
显示以下内容,启动成功
[root@host-172-16-2-46 src]# ./redis-server ../redis.conf 1102:C 21 Jan 20:52:30.868 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 1102:C 21 Jan 20:52:30.869 # Redis version=4.0.6, bits=64, commit=00000000, modified=0, pid=1102, just started 1102:C 21 Jan 20:52:30.869 # Configuration loaded