debianにおいて、自動起動をoffにする debian

debianにおいて、自動起動をoffにする

apache自動起動してて毎回apacheおとさないといけないので
自動起動をoffにした

debianにおいて、現在の自動起動の状態を調べる
# systemctl is-enabled apache2.service
enabled

debianにおいて、自動起動をoffにする
# sudo update-rc.d apache2 disable

debianにおいて、設定後の自動起動の状態を調べる
# systemctl is-enabled apache2.service
disabled