地址已与 redis-server 一起使用
address already in use with redis-server
当运行redis服务器时,显示地址已被使用
这是堆栈跟踪:
45546:C 12 Jul 2019 10:04:41.888 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
45546:C 12 Jul 2019 10:04:41.888 # Redis version=5.0.5, bits=64, commit=00000000, modified=0, pid=45546, just started
45546:C 12 Jul 2019 10:04:41.888 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
45546:M 12 Jul 2019 10:04:41.889 * Increased maximum number of open files to 10032 (it was originally set to 256).
45546:M 12 Jul 2019 10:04:41.890 # Could not create server TCP listening socket *:6379: bind: Address already in use
问题表明该端口已被另一个进程使用或在另一个window中打开。
更改redis服务器端口
redis-server --port 6360
将启动一个监听端口 6360 的 Redis 服务器。
redis-cli -p 6360
- 现在使用它让您的客户端监听此端口。
希望这有助于解决您的问题
@Ranjan 的解决方案有效,
如果您想进一步调试并查看哪个进程正在使用该端口,可以通过以下方式完成
netstat -antp | grep 6379
制作新副本 of.config 文件并更改端口并使用该文件
我在windows中使用Redis时遇到过这个问题。
根本原因是当我从 msi 安装程序安装 Redis 时,它创建了一个服务,该服务将 运行 保留在后台,而我没有意识到这一点。
因此,每当我尝试使用默认配置手动启动此服务时,我都会遇到同样的错误,但在创建配置文件的新副本并更改端口后,它对我有用。
当运行redis服务器时,显示地址已被使用 这是堆栈跟踪:
45546:C 12 Jul 2019 10:04:41.888 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
45546:C 12 Jul 2019 10:04:41.888 # Redis version=5.0.5, bits=64, commit=00000000, modified=0, pid=45546, just started
45546:C 12 Jul 2019 10:04:41.888 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
45546:M 12 Jul 2019 10:04:41.889 * Increased maximum number of open files to 10032 (it was originally set to 256).
45546:M 12 Jul 2019 10:04:41.890 # Could not create server TCP listening socket *:6379: bind: Address already in use
问题表明该端口已被另一个进程使用或在另一个window中打开。
更改redis服务器端口
redis-server --port 6360
将启动一个监听端口 6360 的 Redis 服务器。
redis-cli -p 6360
- 现在使用它让您的客户端监听此端口。
希望这有助于解决您的问题
@Ranjan 的解决方案有效,
如果您想进一步调试并查看哪个进程正在使用该端口,可以通过以下方式完成
netstat -antp | grep 6379
制作新副本 of.config 文件并更改端口并使用该文件
我在windows中使用Redis时遇到过这个问题。 根本原因是当我从 msi 安装程序安装 Redis 时,它创建了一个服务,该服务将 运行 保留在后台,而我没有意识到这一点。
因此,每当我尝试使用默认配置手动启动此服务时,我都会遇到同样的错误,但在创建配置文件的新副本并更改端口后,它对我有用。