微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

redis服务器启动问题之 6379: bind: No such file or directory

1 问题复现

PS D:\Devtools\Redis> redis-server.exe
[8812] 21 Jul 22:39:12.624 # Warning: no config file specified, using the default config. In order to specify a config file use D:\Devtools\Redis\redis-server.exe /path/to/redis.conf
[8812] 21 Jul 22:39:12.624 # Creating Server TCP listening socket *:6379: bind: No such file or directory
PS D:\Devtools\Redis> redis-server.exe redis.windows.conf
[9324] 21 Jul 22:39:22.587 # Creating Server TCP listening socket *:6379: bind: No error

2 问题解决方法

PS D:\Devtools\Redis> redis-cli.exe
127.0.0.1:6379> shutdown
not connected> exit
PS D:\Devtools\Redis> redis-server.exe

3 成功运行的结果

PS D:\Devtools\Redis> redis-server.exe
[10400] 21 Jul 22:40:19.622 # Warning: no config file specified, using the default config. In order to specify a config file use D:\Devtools\Redis\redis-server.exe /path/to/redis.conf
                _._
           _.-``__ ''-._
      _.-``    `.  `_.  ''-._           Redis 3.0.504 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._
 (    '      ,       .-`  | `,    )     Running in standalone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 10400
  `-._    `-._  `-./  _.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |           http://redis.io
  `-._    `-._`-.__.-'_.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |
  `-._    `-._`-.__.-'_.-'    _.-'
      `-._    `-.__.-'    _.-'
          `-._        _.-'
              `-.__.-'

[10400] 21 Jul 22:40:19.622 # Server started, Redis version 3.0.504
[10400] 21 Jul 22:40:19.622 * DB loaded from disk: 0.000 seconds
[10400] 21 Jul 22:40:19.622 * The server is Now ready to accept connections on port 6379

4 原理

重启6379端口,关闭已经占用的线程,重启后port分配给redis使得程序能够运行

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐