El uso de base de datos en MySQL son bastantes comunes mas aun para los webmasters, ya que debemos crear una para cada blog. Este pequeño tutorial servirá para iniciar, detener o reiniciar el servicio MySQL en servidores con el sistema operativo Linux.
Antes de proceder a enumerar los distintos comandos, debo aclarar que el usuario o administrador debe estar logueado con los permisos suficientes para el manejo de servicios root.
Comandos para Fedora, Core y CentOS
Iniciar servidor MySQL
/etc/init.d/mysqld start
Detener servidor MySQL
/etc/init.d/mysqld stop
Reiniciar servidor MySQL
/etc/init.d/mysqld restart
En Red Hat:
# service mysqld start
# service mysqld stop
# service mysqld restart
En Debian y Ubuntu.
Iniciar servidor MySQL
/etc/init.d/MySQL start
Detener servidor MySQL
/etc/init.d/MySQL stop
Reiniciar servidor MySQL
/etc/init.d/MySQL restart