Kill the process occupied port numbers


netstat -ano | findstr 8080  //查看8080端口    

After executing the above command is behind the listening process ID (PID)

According to the process number to find the name of the process

tasklist | findstr 952

Forced shutdown process

taskkill -PID 进程号 -F 
He published 194 original articles · won praise 55 · views 50000 +

Guess you like

Origin blog.csdn.net/weixin_42470710/article/details/102466776