1 下载 redis
wget http://download.redis.io/releases/redis-5.0.0.tar.gz
2 解压
tar xzf redis-5.0.0.tar.gz
3 编译
cd redis-5.0.0
make
4 启动
src/redis-server
备注: 需要先安装 gcc
yum -y install gcc-c++
如果还不行:
在redis 目录下:cd deps;
make hiredis lua jemalloc linenoise
然后在回到redis 根目录: make clear;
然后在 make; 就可以
-----------------------------关于redis 配置文件部分----------------------------------------------------------
5 redis 默认使用 配置文件不是根目录的 redis.conf,redis 默认使用的内置配置文件。
6 启动redis
src/redis-server redis.conf
7 使用 后台进程启动redis
修改:daemonize yes
8 设置密码:
代开 requirepass foobared 的 注释,并且 吧 foobared 修改成你想要的密码:
9 外网连接:
修改 bind 的 值 为 0.0.0.0
10 开启过期key 事件:
notify-keyspace-events
5.0 加入了一些新特性,博主孩砸了整理中............