web-dev-qa-db-ja.com

Debian-起動時にMySQLが起動しないようにする

私のコンピューターには開発目的でMySQLがインストールされていますが、ほとんどの場合は使用しません。起動時にMySQLを起動しないように、どのようにDebianを設定できますか?ただし、(service mysql startを使用して)指定した場合のみです。

私は使用してApache2に同じことをしました、

 update-rc.d -f Apache2 remove

しかし、MySQLでこれを行う方法を見つけることができませんでした。

8
Niv

あなたが欲しいupdate-rc.d mysql disable。削除したくない場合は、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

16
stew

Debian 8(Jessy)はデフォルトでsystemdを使用しているため、これを試してください。

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

または:

update-rc.d mysql disable
1
quanta