1. 程式人生 > >windows 端口占用

windows 端口占用

1.查詢端口占用

netstat -ano | findstr  "埠"
example: netstat -ano|findstr  "8080"

2.殺死程序

taskkill 	-f	-pid 	  "pid"
Example:  taskkill -f -pid "2136"

實際操作示例圖解

Vue