admin 管理员组

文章数量: 1184232

解决Identify and stop the process that's listening on port 8080 or configure this application to端口占用

打开cmd 输入命令

netstat 8080

输入cmd命令 查看占用端口的进程号

netstat -ano | findstr 8080

使用cmd命令将此进程终止

taskkill /F /PID 占用端口的进程

本文标签: process Listening Identify Stop configure