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


8

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

私はapache2を使って同じことをしました、

 update-rc.d -f apache2 remove

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

回答:


16

あなたが欲しい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


2

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

1
update-rc.d -f mysql remove

または:

update-rc.d mysql disable
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.