【redis】在Ubuntu 20.04中安装redis

在Ubuntu 20.04中安装redis

在Ubuntu 20.04中安装redis

  1. 切换到root用户

su root

使用apt命令来搜索redis相关的软件包.

apt search redis 不能正常显示要先输入:sudo apt update

使用apt命令安装redis

apt install redis

查找是否存在redis:

netstat -anp | grep redis

我们已经成功安装redis了,但是只能本机访问,需要修改配置,允许其他机器访问:

修改:/etc/redis/redis.conf

修改 bind 127.0.0.1 为 bind 0.0.0.0

修改 protected-mode yes 为 protected-mode no

配置密码

redis 配置文件是 linux 下的 /etc/redis.conf

#requirepass foobared去掉注释,foobared改为自己的密码,我在这里改为

requirepass rootroot

修改完成之后,重启之后才能生效

service redis-server restart

输入 service redis-server status 命令显示运行中说明重启成功

使用redis自带的客户端来连接服务器.

redis-cli

auth "rootroot"

如果输入ping命令,回显PONG。说明上述操作成功

ctrl + d退出redis客户端

相关推荐
Kagol20 小时前
macOS 和 Windows 操作系统下如何安装和启动 MySQL / Redis 数据库
redis·后端·mysql
hzulwy21 小时前
Redis常用的数据结构及其使用场景
数据库·redis
mingqian_chu1 天前
ubuntu中使用安卓模拟器
android·linux·ubuntu
ashane13141 天前
Redis 哨兵集群(Sentinel)与 Cluster 集群对比
redis
Zero_to_zero12341 天前
解决docker的ubuntu系统中文乱码问题
ubuntu·docker·容器
Y第五个季节1 天前
Redis - HyperLogLog
数据库·redis·缓存
Justice link1 天前
企业级NoSql数据库Redis集群
数据库·redis·缓存
一大Cpp1 天前
Ubuntu与本地用户交流是两种小方法
linux·运维·ubuntu
爱的叹息1 天前
Spring Boot 集成Redis 的Lua脚本详解
spring boot·redis·lua