Linux环境搭建~Redis
系统:CentOS 7.8
Redsi版本:3.2.12
安装
-
遇到判断(Y/D/N),选择'y'就可以了
-
下载fedora的epel仓库
yum install epel-release
- 安装redis-默认安装v3.2.12,需要其他版本可以使用源码编译安装
或使用Remi存储库:
Centos中yum方式安装最新版本redis_forrest420的专栏-CSDN博客
yum install redis
命令
- 启动/查看状态/停止redis
systemctl start redis
systemctl status redis
systemctl stop redis
配置
- 设为开机启动
systemctl enable redis.service
- 查看redis配置
vim /etc/redis.conf
-
Redis常用配置Redis.conf
https://www.cnblogs.com/leoxuan/articles/9053514.html -
主要是设置端口(
port
),访问权限-是否外网访问(bind
),密码(requirepass
) -
关闭、重启Redis,查看端口是否改变