当前位置:网站首页>See which processes occupy specific ports and shut down

See which processes occupy specific ports and shut down

2022-06-26 08:11:00 Painted horse

1.Win+R Turn on run , Input cmd Open the command line window .

2. Suppose you want to query ports 8080 Occupancy , Type... On the command line :netstat -aon|findstr “8080”
 Insert picture description here
3. Get process number 34860, Continue typing commands : tasklist|findstr “34860”
 Insert picture description here
4. Get the process image name java.exe

5.Ctrl + Alt + delete Open Task Manager , find be known as java.exe The process of , Right click , End the process .

6. In this way, the problem that the port is occupied is solved .

原网站

版权声明
本文为[Painted horse]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202170604200993.html