`
panyimx
  • 浏览: 9818 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

8080端口被占用怎么办

    博客分类:
  • svn
 
阅读更多
8080端口被占用怎么办
 
1、Windows平台
 
windows命令行窗口下执行:
 
C:\>netstat -aon|findstr "80" 
TCP     127.0.0.1:80         0.0.0.0:0               LISTENING       2448
 
看到了吗,端口被进程号为2448的进程占用,继续执行下面命令:
 
C:\>tasklist|findstr "2448" 
thread.exe                     2016 Console                 0     16,064 K
 
很清楚吧,thread占用了你的端口,Kill it
 
如果第二步查不到,那就开任务管理器,看哪个进程是2448,然后杀之即可。
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics