【Computer software】The solution to the situation that the network port is occupied

Using XXX software, etc., the port is occupied. If port 1080 is occupied

You can run the CMD query as an administrator and close the occupied process, and restart the XXX software. As shown below:

netstat -ano | findstr 1080
taskkill -PID 10136 -F
netstat -ano | findstr 1080
taskkill -PID 22488 -F
netstat -ano | findstr 1080

image

Guess you like

Origin blog.csdn.net/qq_39444290/article/details/129077661