Linux queries the pid of the application when it is running

Open the linux command window and enter ps -ef | grep 'application name'

ps -ef | grep mysql

insert image description here

Use kill -9 process ID to forcibly kill the process

kill -9 3269

Guess you like

Origin blog.csdn.net/weixin_46051479/article/details/125861826