以下为你介绍在局域网内使用 MacOS 远程访问 Ubuntu 主机上的 Redis 服务,所使用的工具为 ssh 协议。
1、前言
本文介绍的方法,是通配置,在 Mac 上通过 ssh 协议访问 Ubuntu 主机的 Redis 服务。
注意:如果 Ubuntu 不做 Redis 配置,Mac 直接访问 Ubuntu 的 Redis 服务时会报以下错误:
Could not connect to Redis at 192.168.X.X:6379: Connection refused
Could not connect to Redis at 192.168.X.X:6379: Connection refused
not connected> exit
2、环境
被访问服务器:Ubuntu 18.04 LTS操作系统
发起访问主机:macOS Sierra 10.12操作系统
网络环境:局域网内
3、工具
使用 ssh 协议,其它协议本方法可能不通用。
4、查看 Ubuntu 的 IP 地址
请执行以下命令:
liang@liang:~$ ifconfig
得到 Ubuntu 系统主机在局域网内的 IP 地址 为 192.168.1.102。
5、在 Ubuntu 主机配置 redis.conf
配置 redis.conf,将 Ubuntu 在局域网的 IP 地址与 Redis 服务绑定:
liang@liang:~$ sudo apt install vim # 安装 vim 编辑器,如果已安装可略过
liang@liang:~$ sudo vim /etc/redis/redis.conf # 进入 vim 编辑器编辑 redis.conf 文件
修改 /etc/redis/redis.conf 文件:
bind 127.0.0.1 192.168.1.102 # 192.168.1.102 为 Ubuntu 主机在局域网内的 IP 地址
6、验证测试
1]、在 Ubuntu 主机启动 Redis 服务,并在 redis-cli 输入键值对:
liang@liang:~$ sudo service redis restart # 重新启动 Redis 服务
liang@liang:~$ redis-cli
127.0.0.1:6379> set key1 'hello world'
OK
127.0.0.1:6379> get key1
"hello world"
2]、在 Mac 主机 terminal 上访问 Ubuntu 主机的 6379 端口(Redis服务默认端口),并获取键值对的值:
MACXdeMacBook-Pro:~ macx$ sudo redis-cli -h 192.168.1.102
MACXdeMacBook-Pro:~ macx$ sudo redis-cli -h 192.168.1.102
Password:
192.168.1.102:6379> get key1
"hello world"
得到 key1 值为 'hello world',验证成功。
相关主题