侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

REDIS取消只能本地访问的方式

2023-11-24 星期五 / 0 评论 / 0 点赞 / 36 阅读 / 1056 字

新装的REDIS发现只有本地能访问,局域网和外网都无法直接访问 将文件redis.windows.conf 中的bind 127.0.0.1 改成服务器需要绑定的网卡ip地址重启即可 ## bind

新装的REDIS发现只有本地能访问,局域网和外网都无法直接访问

将文件redis.windows.conf 中的bind 127.0.0.1

改成服务器需要绑定的网卡ip地址重启即可

## 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.# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~bind 10.224.202.8

 

广告 广告

评论区