Forked from lifeisfoo/Disable mysql+apache autostart ubuntu upstart
Created
December 18, 2016 11:49
-
-
Save jorgeas80/49a21e02cba89825b977d43970577acb to your computer and use it in GitHub Desktop.
avoid mysql apache start at boot ubuntu 13.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "manual" | sudo tee -a /etc/init/mysql.override | |
sudo update-rc.d -f apache2 remove | |
# then, to start manually | |
# sudo service apache2 start | |
# sudo service mysql start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment