How make mysql start automatically ? (linux-cli only)

vasilakisfil picture vasilakisfil · Mar 25, 2012 · Viewed 70.3k times · Source

How can i make mysql start every time the system boot ? I need that in a dedicated server(ubuntu distro) in which i have my blog, but every time the server goes down, on booting mysql is stopped. Btw i can use only command line.

Answer

inquiryqueue picture inquiryqueue · Mar 26, 2012

update-rc.d allows setting init script links on Ubuntu and Debian Linux systems to control what services are run by init when entering various runlevels. It should be able to add mysql to the list of services to run at boot:

sudo update-rc.d mysql defaults

If you later want to disable running mysql on bootup:

sudo update-rc.d mysql remove