IDEA 启动项目发现端口被占用

390 阅读1分钟

第一步:查询被占用的端口

netstat -ano|findstr "9090"

image.png

第二步:杀死被占用的端口

taskkill -PID 19572 -F

image.png