你是mysql-server-5.1
从 ubuntu 仓库使用的吗?
在文件中,/etc/init/mysql.conf
您将找到如下所示的一些行:
start on (net-device-up
and local-filesystems
and runlevel [2345])
stop on runlevel [016]
Run Code Online (Sandbox Code Playgroud)
从开始到停止移动“2”应该可以解决问题:
start on (net-device-up
and local-filesystems
and runlevel [345])
stop on runlevel [0126]
Run Code Online (Sandbox Code Playgroud)