0
点赞
收藏
分享

微信扫一扫

mysql索引性能分析(sql执行频率、慢日志分析、sql效率分析工具 profile、explain)

读思意行 2023-09-23 阅读 34

windows进程管理相关命令

  1. 根据进程名找到进程
    例如python进程
PS C:\Users\27467> tasklist | findstr python
python.exe                    7088 Console                    2      3,364 K
python.exe                    1580 Console                    2     41,052 K
  1. 根据占据的端口好找到进程号
    例如想要找到启用端口号为5173的进程PID,最后一位为该进程的PID
C:\Windows\System32>netstat -ano|findstr 5173
TCP 127.0.0.1:5173 0.0.0.0:0 LISTENING 16696
  1. kill掉进程
    根据上一步查找到的pid kill进程
taskkill /pid 7088 /f
举报

相关推荐

0 条评论