文章目录
- Redis
- 1.Redis的安装
- 2.设置远程连接
- 3.客户端连接
- 3.1 客户端下载
Redis
1.Redis的安装
- yum 安装 redis,使用以下命令,直接将 redis 安装到 linux 服务器:
yum -y install redis
- 启动 redis使用以下命令,以后台运行方式启动 redis:
redis-server /etc/redis.conf &
- 操作 redis,使用以下命令启动 redis 客户端:
redis-cli
具体操作如下图所示:
2.设置远程连接
- 将 redis 配置文件下载到本地:redis 配置文件是 linux 下的 /etc/redis.conf ;可以使用以下指令。
sz redis.conf
- 将 redis.conf 中的 “bind 127.0.0.1”注释掉;
- 将 redis.conf 中的“protected-mode yes” 改为“protected-mode no”;
- 将修改后的 redis.conf 上传至 liunx 下的 /etc 目录,上传查看是否替换了原本的redis.conf文件
- 使用命令“redis-cli shutdown”先关闭 redis 服务,再使用“redis-server /etc/redis.conf &”启动 redis 服务。
3.客户端连接
3.1 客户端下载
可以在github上下载:https://github.com/MicrosoftArchive/redis/releases
下载后点击安装即可。
然后打开app点击新建连接,host选择云服务器地址,端口号默认6379,建议不设置密码直接点击OK。