# To Start MySQL Server # Para iniciar el servidor MySQL
/sbin/service mysqld start / sbin / service mysqld comienzo

# To Stop MySQL Server # Para parar el servidor MySQL
/sbin/service mysqld stop / sbin / service mysqld stop

# To Restart MySQL Server # Para reiniciar el servidor MySQL
/sbin/service mysqld restart / sbin / service mysqld restart

And of course there is the brute force way to kill all the processes: Y, por supuesto, está la fuerza bruta manera de matar a todos los procesos:
$ for i in `ps -ef |grep mysqld |awk ‘{print $2}’`; do `kill -9 $i`; done $ I en `ps-ef | grep mysqld | awk '(print $ 2)'`; hacer `kill -9 $ i`; hacer

Thanks to Anthony Eden for the comment (below) to remove the dot in front. Gracias a Anthony Eden para el comentario (abajo) para eliminar el punto delante.

A simpler alternative is: Una alternativa es simple:
pkill mysqld pkill mysqld

This will kill the mysqld process. Esto matará la mysqld proceso. However the best way to stop (because it stops properly) is obviously: Sin embargo, la mejor manera de detener (porque se detiene correctamente) es, evidentemente:
/sbin/service mysqld stop / sbin / service mysqld stop