Debian - Startet das Booten von MySQL beim Start

8

Ich habe MySQL auf meinem Computer für Entwicklungszwecke, aber die meiste Zeit benutze ich es nicht. Wie kann ich meinen Debian konfigurieren , damit es nicht MySQL nach dem Booten starten, aber nur , wenn ich sage ihm (mit service mysql start).

Ich habe das gleiche mit apache2 gemacht,

 update-rc.d -f apache2 remove

Aber ich konnte mit MySQL keinen Weg finden, dies zu tun.

Niv
quelle

Antworten:

16

Du willst update-rc.d mysql disable. Sie möchten nicht entfernen, wie in der Manpage update-rc.d angegeben:

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

Eintopf
quelle
2

Da Debian 8 (Jessy) standardmäßig systemd verwendet, versuchen Sie Folgendes:

systemctl list-units | grep mysql    # check for mysql unit name
systemctl disable mysql.service      # or whatever you find at prev step
Alexander Yancharuk
quelle
1
update-rc.d -f mysql remove

oder:

update-rc.d mysql disable
Quanten
quelle