I have lots of servers installed (Apache, MySQL, etc.), but I don't want them all to start at boot time (they drain power, and I'm on batteries most of the time). How do I configure this?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
In the console, you could write:
For additional information read Ubuntu Bootup How to. |
||||
|
|
|
This link is a bit out dated version wise, but does it match an option in your version?
|
|||
|
|
|
Another way to accomplish this is to 'disable' the sym link - not delete it. sudo update-rc.d mysql disable 2 This will rename the sym link to start with 'K' and the service won't start-up on boot. You can then re-enable it at any time if you do decide you want it to start-up on boot. |
|||
|
|