I. BACKGROUND
After the recent system update, I found that the 80 port was occupied when I applied the 80 port startup project in idea, and looked up the data to see how to find the 80 port of the program and end its operation, the following ways to share the solution to everyone.
Second, the solution steps
1. First open the console.
Win+x input cmd Enter
2. Use the command: NETSTAT-ANO|FINDSTR "80" to view the PID corresponding to port 80.
TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448
3. Use the command: Tasklist|findstr "2448" to find the application that corresponds to the process number
Thread.exe Console 0 16,064 K
4. Use command: taskkill-f-pid 2448来 Force the application process to be killed
5. If the 3rd step is not found, then open the Task Manager, the process---view---Select columns---pid (process bit identifier) tick on it.
See which process is 2448 and then kill the process just fine.
Iii. Summary
After the operation is complete, you will find that you have solved the problem of 80 port being occupied perfectly. Kiss A ~
Windows system View 80-port-occupied program and end the program run