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

前端 未结 9 1561
没有蜡笔的小新
没有蜡笔的小新 2020-12-23 12:43

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 boo

相关标签:
9条回答
  • 2020-12-23 13:30

    Deleting /etc/init/mysql.override did the job in my case (HostEurope VPS with Ubuntu 12.04)

    0 讨论(0)
  • 2020-12-23 13:31

    No answer helped. Finally chkconfig and update-rc.d did not work with MySQL on my machine.

    Solution, I had a file /etc/init/mysql.override which contained

    manual
    

    i just deleted that file

    $ sudo rm /etc/init/mysql.override
    
    0 讨论(0)
  • 2020-12-23 13:35

    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
    
    0 讨论(0)
提交回复
热议问题