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