CentOS7下Redis7安装
目前Redis的最新稳定版本已到7.0,本文介绍redis-7.0.5在CentOS7.6下的安装使用。
1、下载
Redis下载地址:https://redis.io/download/,或者使用命令直接下载:
1 |
|
2、安装Redis
安装依赖gcc,如果没有,使用如下命令安装:
1 |
|
解压并安装:
1 |
|
安装完成后,会看到redis配置文件redis.conf和src目录下redis-server启动脚本;
3、配置Redis
修改redis配置文件redis.conf:
1 |
|
port 默认6379,这里我改为了6380;
daemonize 默认为no, 这里改为了yes,后台启动;
protected-mode 默认为 yes,只有本机才可以访问redis,这里改为no,关闭保护模式;
bind 绑定的是机器网卡的ip,代表允许客户端通过机器的哪些网卡ip去访问,内网一般可以不配置bind,注释掉即可;
pidfile 指定pidfile位置,默认为/var/run/redis_6379.pid,这里改为和port一致redis_6380.pid;
4、启动Redis-Server
1 |
|
验证是否启动成功:
1 |
|
5、进入redis客户端
1 |
|
键入 quit 命令可退出 客户端。
使用如下命令可关闭redis server:
1 |
|
CentOS7下Redis7安装
https://river106.cn/posts/7eed654.html