# To Start MySQL Server # MySQLサーバを起動する
/sbin/service mysqld start / sbin /サービスmysqldを開始

# To Stop MySQL Server # MySQLサーバを停止する
/sbin/service mysqld stop / sbin /サービスmysqldを停止する

# To Restart MySQL Server # MySQLサーバを再起動する
/sbin/service mysqld restart / sbin /サービスmysqldを再起動する

And of course there is the brute force way to kill all the processes:そしてもちろん、ブルートフォースにはすべてのプロセスを殺す方法:
$ for i in `ps -ef |grep mysqld |awk ‘{print $2}’`; do `kill -9 $i`; done $のi 、 ` psの- ef | grep mysqldの| Awkの' (印刷$ 2 ) ' ` ; -9 $私を殺す` ` ;完了

Thanks to Anthony Eden for the comment (below) to remove the dot in front.アンソニーイーデンのおかげで、コメント(下)を削除するにドットの前にします。

A simpler alternative is:単純な代替は:
pkill mysqld pkillのmysqld

This will kill the mysqld process.これにより、 mysqldプロセスを台無しにする。 However the best way to stop (because it stops properly) is obviously:しかしする最良の方法を停止する(停止するため、適切な)は、明らかに:
/sbin/service mysqld stop / sbin /サービスmysqldを停止する