Verify the connector’s configuration, identify and stop any process that’s listening on port 20000,

端口占用解决办法

Verify the connector’s configuration, identify and stop any process that’s listening on port 20000, or configure this application to listen on another port.

翻译:验证连接器的配置,识别并停止正在侦听端口20000的任何进程,或将该应用程序配置为侦听另一个端口。

原因:

由于之前使用改端口的程序不正常关闭,导致端口并未释放,需要手动释放

解决方法:

方法一:

直接重启,一般可以解决该问题,如果重启比较麻烦,可以使用下面的方法。

方法二:

进入cmd,执行命令:netstat -ano

Verify the connector’s configuration, identify and stop any process that’s listening on port 20000,

打开任务管理器,选择详细信息或者服务,找到对应的PID为10428的应用,右键关闭即可。

Verify the connector’s configuration, identify and stop any process that’s listening on port 20000,

其他:

查找端口:

cmd命令提示符号,执行命令:netstat -ano
命令提示符号,执行命令:tasklist(通过pid 10460定位)

查看端口占用:netstat -ano | findstr 8080

反查:tasklist | findstr 3764

查看端口是否启用telnet 127.0.0.1 8080

查看端口是否启用telnet 127.0.0.1 8080