# To Start MySQL Server # Per iniziare a server MySQL
/sbin/service mysqld start / sbin / service mysqld inizio

# To Stop MySQL Server # Per interrompere server MySQL
/sbin/service mysqld stop / sbin / service mysqld stop

# To Restart MySQL Server # Per riavviare server MySQL
/sbin/service mysqld restart / sbin / service mysqld riavviare

And of course there is the brute force way to kill all the processes: E, naturalmente, vi è la forza bruta modo di uccidere tutti i processi:
$ for i in `ps -ef |grep mysqld |awk ‘{print $2}’`; do `kill -9 $i`; done $ Per i in `ps-ef | grep mysqld | awk '(print $ 2)'`; fare uccidere »-9 $ i`; fatto

Thanks to Anthony Eden for the comment (below) to remove the dot in front. Grazie a Anthony Eden per il commento (di seguito) per rimuovere il punto di fronte.

A simpler alternative is: Una alternativa è semplice:
pkill mysqld pkill mysqld

This will kill the mysqld process. Ciò uccidere il processo mysqld. However the best way to stop (because it stops properly) is obviously: Tuttavia il miglior modo per fermare (perché si arresta correttamente) è ovviamente:
/sbin/service mysqld stop / sbin / service mysqld stop