比如,mysqld监听的是3306端口,再命令行客户端使用netstat -aon|findstr "3306"命令,输出如下:
C:\> netstat -aon|findstr "3306"
TCP 0.0.0.0:3306 0.0.0.0:0 LISTENING 24280
TCP 10.50.22.167:13306 220.181.38.149:443 TIME_WAIT 0
TCP [::]:3306 [::]:0 LISTENING 24280
可以看到3306端口已经被占用,正在被进程号为24280的进程监听。
命令行客户端输入命令tasklist|findstr "mysqld"
,输出情况:
C:\> tasklist|findstr "mysqld"
mysqld.exe 24280 Services 0 6,884 K
可以看到是mysql.exe程序进程号为24280。
原文:https://www.cnblogs.com/zhangxl1016/p/14654408.html