【Redis】Could not create server TCP listening socket __6379_ bind_ 在一个非套接字上尝试了一个操作。

问题描述:

安装Redis,redis-server无法启动,报错。

[34420] 20 Aug 21:43:21.110 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
[34420] 20 Aug 21:43:21.110 # Redis version=5.0.14.1, bits=64, commit=ec77f72d, modified=0, pid=34420, just started
[34420] 20 Aug 21:43:21.110 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
[34420] 20 Aug 21:43:21.115 # Could not create server TCP listening socket *:6379: bind: 在一个非套接字上尝试了一个操作

原因分析

Redis安装后,可能在后台启动了一个Redis进程,占用了6379端口。


解决方案

新建终端,输入指令:

redis-cli.exe
shutdown
exit
redis-server.exe

你可能感兴趣的:(Redis,redis,tcp/ip,数据库)