Debian - Parando o MySQL de inicializar no início


8

Eu tenho o MySQL no meu computador para fins de desenvolvimento, mas na maioria das vezes eu não o uso. Como posso configurar meu Debian para que ele não inicie o MySQL na inicialização, mas apenas quando eu o digo (usando service mysql start).

Eu fiz a mesma coisa para apache2 usando,

 update-rc.d -f apache2 remove

Mas não consegui encontrar uma maneira de fazer isso com o MySQL.

Respostas:


16

Você quer update-rc.d mysql disable. Você não deseja remover, conforme observado na página de manual 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

Desde o Debian 8 (Jessy) usando o systemd por padrão, tente o seguinte:

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

ou:

update-rc.d mysql disable
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.