Server Tip - update-rc.d
Bug #413061 reported by
Kendall Price
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Ubuntu Server Tips |
Fix Committed
|
Undecided
|
Unassigned |
Bug Description
Ubuntu Server Tip: Use sudo update-rc.d to manage which services launch at boot. To deactivate a service at boot, for example, apache2: sudo update-rc.d -f apache2 remove. To activate the service at boot: sudo update-rc.d apache2 install defaults
description: | updated |
Changed in ubuntu-server-tips: | |
status: | Confirmed → Fix Committed |
To post a comment you must log in.
I propose an even more useful version:
To deactivate a service at boot, for example, lighttpd: update-rc.d -f lighttpd remove. To activate the service at boot: update-rc.d lighttpd install defaults