Ubuntu下解决MySQL自启动,chkconfig list 全部off 情况

时间:2024-10-07 12:04:26

chkconfig命令是用于RedHat/Fedora发行版的,而对于像Ubuntu之类的Debian发行版,应该使用这个命令:

sudo update-rc.d mysql defaults

验证一下:

# chkconfig --list | grep mysql
mysql                    0:off  1:off  2:on  3:on  4:on  5:on  6:off
果然搞定了!

参考:https://www.linuxidc.com/Linux/2015-03/114448.htm