目录
linux
Linux:
Windows:
1、window下查看端口占用:
//查询占用8088端口的进程的pid netstat -ano|findstr "8088" -->pid=6580
//根据pid查询到进程对应的应用 tasklist|findstr "6580" -->xxx.exe
//杀死应用,关闭进程 taskkill /f /t /im xxx.exe
Posted hejinsheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows&Linux常用命令笔记相关的知识,希望对你有一定的参考价值。
目录
linux
Linux:
Windows:
1、window下查看端口占用:
//查询占用8088端口的进程的pid netstat -ano|findstr "8088" -->pid=6580
//根据pid查询到进程对应的应用 tasklist|findstr "6580" -->xxx.exe
//杀死应用,关闭进程 taskkill /f /t /im xxx.exe
以上是关于Windows&Linux常用命令笔记的主要内容,如果未能解决你的问题,请参考以下文章
windows下使用curl命令 && 常用 curl 命令