1、根据端口号“3306”查找进程号 4534
netstat -ano|findstr "3306"
2、根据进程号“4534”查找进程名 mysqld.exe
tasklist|findstr 4534
3、根据进程名杀死进程
taskkill /f /t /im mysqld.exe
时间: 2024-10-03 02:37:02
1、根据端口号“3306”查找进程号 4534
netstat -ano|findstr "3306"
2、根据进程号“4534”查找进程名 mysqld.exe
tasklist|findstr 4534
3、根据进程名杀死进程
taskkill /f /t /im mysqld.exe