Ubuntu安装Redis
基于 Ubuntu22.04,使用 apt 命令安装redis-server
在开始安装前,先更新一下系统。命令如下:
1 2
| sudo apt update sudo apt upgrade
|
使用 apt 自动安装redis:
1
| sudo apt install redis-server
|
安装完成后,查看MySQL的状态:

配置Redis远程设置:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
sudo vim /etc/redis/redis.conf
bind 127.0.0.1 ::1
requirepass your-pass-word
daemonize yes
|
Centos安装Redis
基于 Centos7.9,使用 tar 包进行安装
官网下载tar包,地址:https://redis.io/download/#redis-downloads
下载压缩包:redis-6.2.7.tar.gz
解压到指定目录:
1
| tar -zxvf redis-6.2.7.tar.gz -C /opt/
|
编译安装:
1 2 3 4 5 6 7 8
| cd /opt/redis-6.2.7/
make
make install [PREFIX=/tools/redis]
|
若编译过程报错,需要安装gcc:yum insall gcc

启动服务
1 2 3 4 5
| redis-server /opt/redis-6.2.7/redis.conf
redis-cli
|
配置文件设置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| # 设置后台启动,如果不是后台启动,每次退出终端redis就关闭了 daemonize yes
# 开启密码保护,注释则不需要密码 requirepass 密码
# 设置端口号 port 6379
# 允许访问的ip,改为0.0.0.0就是所有ip均可 bind 127.0.0.1 -::1 bind 0.0.0.0
# 工作目录,默认是当前目录,日志、持久化等文件会保存在这个目录 dir .
# 数据库数量,设置为1,代表只使用1个库,默认有16个库,编号0~15 databases 1
# 设置redis能够使用的最大内存 maxmemory 512mb
# 日志文件,默认为空,不记录日志,可以指定日志文件名 logfile "redis.log"
|
设置开机自启动
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| # 新建一个系统服务文件: vim /etc/systemd/system/redis.service
# 写入如下内容: [Unit] Description=redis-server After=network.target
[Service] Type=forking ExecStart=/usr/local/bin/redis-server /opt/redis-6.2.7/redis.conf PrivateTmp=true
[Install] WantedBy=multi-user.target
# 重载系统服务 systemctl daemon-reload
# 然后就可以使用systemctl命令 # 启动 systemctl start redis # 停止 systemctl stop redis # 重启 systemctl restart redis # 查看状态 systemctl status redis # 开机自启 systemctl enable redis
|