不会终止进程

不会终止进程

我必须终止 mysqld 进程,但在我终止后,同一个进程以不同的方式作为新的 pid 编号启动。例如:

ak@ak-EasyNote-TM98:~$ ps -aux|grep mysql 
mysqld start mysql     6894  7.0  1.4 484304 42940 ?        Ssl  21:13 
...

然后我得到了这个:

ak@ak-EasyNote-TM98:~$ ps -aux|grep mysqld 
mysqld start mysql     6894  7.0  1.4 484304 42940 ?        Ssl  21:13
...

我怎样才能找到解决方案?

答案1

这是因为 mysqld_safe。mysql 的看门狗注意到了它并重新启动了它。您应该使用提供的 init 脚本停止 mysql:sudo /etc/init.d/mysql stop

相关内容