Debian: detener el inicio de MySQL al inicio


8

Tengo MySQL en mi computadora con fines de desarrollo, pero la mayoría de las veces no lo uso. ¿Cómo puedo configurar mi Debian para que no se inicie MySQL en el arranque, sino solo cuando se lo indique (usando service mysql start)?

Hice lo mismo con apache2 usando,

 update-rc.d -f apache2 remove

Pero no pude encontrar una manera de hacer esto con MySQL.

Respuestas:


16

Que desea update-rc.d mysql disable. No desea eliminar, como se indica en la página de manual de update-rc.d:

A common system administration error is to delete the links with the thought that this will "disable" the service, i.e., that this will pre‐ vent the service from being started. However, if all links have been deleted then the next time the package is upgraded, the package's postinst script will run update-rc.d again and this will reinstall links at their factory default locations


2

Como Debian 8 (Jessy) usa systemd por defecto, intente esto:

systemctl list-units | grep mysql    # check for mysql unit name
systemctl disable mysql.service      # or whatever you find at prev step

1
update-rc.d -f mysql remove

o:

update-rc.d mysql disable
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.