美文网首页
Redis windows本地服务启动无法连接问题

Redis windows本地服务启动无法连接问题

作者: 等等ChEnH | 来源:发表于2019-12-23 11:38 被阅读0次

Redis配置文件中默认设置了bind 127.0.0.1的原因。修改Redis配置文件redis.windows.conf和redis.windows-service.conf中bind配置

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

修改完成后重启服务

安装redis服务:redis-server --service-install redis.windows-service.conf --loglevel verbose
卸载redis服务:redis-server --service-uninstall
启动服务命令:redis-server.exe --service-start
关闭服务命令:redis-server.exe --service-stop

相关文章

  • Redis windows本地服务启动无法连接问题

    Redis配置文件中默认设置了bind 127.0.0.1的原因。修改Redis配置文件redis.windows...

  • Redis命令

    启动本地客户端 如果设置了密码 检测 redis 服务是否启动 连接远程redis服务格式:redis-cli -...

  • Redis 学习笔记

    Redis Notes Linux 安装: 启动Redis服务: 本地启动: 远程连接: 常用命令: 字符串: 设...

  • 解决windows本地无法连接Redis服务器问题

    最近碰到一个Redis一直无法访问本地host设置的一个 redis.com的问题,但是换成127.0.0.1就能...

  • redis基本操作

    启动-关闭 启动:redis-server.exe redis.windows.conf连接:redis-cli....

  • Redis

    Windows下的启动方式:redis作为windows服务启动方式redis-server --service-...

  • windows下安装redis服务开机启动

    windows下安装redis服务开机启动 1.安装Windows服务 2.启动服务 3.在redis的目录下执行...

  • 学习笔记

    安装 WINDOWS启动和关闭 mongod 启动服务器 关闭控制台 关闭服务器 命令行 mongo 连接本地服...

  • redis操作小结

    安装redis(windows、Linux、Ubuntu和Mac):Redis 安装 redis的启动、连接、停止...

  • windows下的redis命令

    启动服务 redis-server.exe redis.windows.conf 启动 redis-cli.exe...

网友评论

      本文标题:Redis windows本地服务启动无法连接问题

      本文链接:https://www.haomeiwen.com/subject/aldznctx.html