如何在阿里云Linux服务器下部署redis,并且可以使一台连网windws电脑使用RedisInsight连接redis

如何在阿里云Linux服务器下部署redis,并且可以使一台连网windws电脑使用RedisInsight连接redis

1.安装redis

yum install redis

2.找到redis.conf这个配置文件

find / -name redis.conf
默认位置在/etc/redis.conf

3.修改配置文件

vim /etc/redis.conf
找到下面这一部分修改bind 127.0.0.1->bind 0.0.0.0使得redis服务器可以接收所有IP地址地连接

################################## NETWORK #####################################

# By default, if no "bind" configuration directive is specified, Redis listens
# for connections from all the network interfaces available on the server.
# It is possible to listen to just one or multiple selected interfaces using
# the "bind" configuration directive, followed by one or more IP addresses.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1 ::1
#
# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
# internet, binding to all the interfaces is dangerous and will expose the
# instance to everybody on the internet. So by default we uncomment the
# following bind directive, that will force Redis to listen only into
# the IPv4 lookback interface address (this means Redis will be able to
# accept connections only from clients running into the same computer it
# is running).
#
# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
# JUST COMMENT THE FOLLOWING LINE.
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#设置所有IP都可以连接redis
#bind 127.0.0.1
bind 0.0.0.0

4.修改服务器地安全组策略

开放端口6379的数据出入,协议类型位TCP

5.启动redis服务器

redis-server /etc/redis.conf &

6.下载安装RedisInsight

RedisInsight下载页面

7.添加远程服务器的公网ip和端口号连接成功!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值