Hi
Ich habe MySQL installiert. Das MySQL auch beim Start des Computers gestartet wird, sollte man das mysql.server script in rc3.d und rc0.d verlinken (nach Anleitung).
Als ich die Kiste neu gebootet hab war mit ps -ef | grep mysql nichts zu finden! Als ich sah das ich mich im "Init2-Modus" befinde, habe ich mit init 3 gewechselt. Und siehe da mysql wurde gestartet. Aber wieso bleibt Debian bei init 2 stehen? Hab ich ein fehler oder ist das standardmässig so? Gibts eine Möglichkeit das zu ändern?
MfG Mathias
wieso init 2 ?
am besten du verlinkst da nichts händisch sondern machst es über update-rc.d
Beispiel:
Removen geht natürlich auch:
Beispiel:
Code: Alles auswählen
radiohead:/home/abi# touch /etc/init.d/foo
radiohead:/home/abi# update-rc.d foo defaults
Adding system startup for /etc/init.d/foo ...
/etc/rc0.d/K20foo -> ../init.d/foo
/etc/rc1.d/K20foo -> ../init.d/foo
/etc/rc6.d/K20foo -> ../init.d/foo
/etc/rc2.d/S20foo -> ../init.d/foo
/etc/rc3.d/S20foo -> ../init.d/foo
/etc/rc4.d/S20foo -> ../init.d/foo
/etc/rc5.d/S20foo -> ../init.d/foo
Code: Alles auswählen
radiohead:/home/abi# update-rc.d -f foo remove
update-rc.d: /etc/init.d/foo exists during rc.d purge (continuing)
Removing any system startup links for /etc/init.d/foo ...
/etc/rc0.d/K20foo
/etc/rc1.d/K20foo
/etc/rc2.d/S20foo
/etc/rc3.d/S20foo
/etc/rc4.d/S20foo
/etc/rc5.d/S20foo
/etc/rc6.d/K20foo