Ubuntu安装Redis

首先要切换到root用户

1.apt安装

apt install redis

2.⽀持远程连接

修改 /etc/redis/redis.conf

• 修改 bind 127.0.0.1 为 bind 0.0.0.0

• 修改 protected-mode yes 为 protected-mode no

Ubuntu安装Redis_第1张图片

3.控制 Redis 启动

1.启动 Redis 服务 service redis-server start

2.停⽌ Redis 服务 service redis-server stop

3.重启 Redis 服务 service redis-server restart

4.使用Redis自带客户端连接服务器

redis-cli

你可能感兴趣的:(MySQL数据库,ubuntu,redis,bootstrap)