重新启动 mysql

重新启动 mysql

我尝试在 Ubuntu 12.04 上重新启动 mysql 服务器:

viggy@ubuntu:/$ /etc/init.d/mysql restart
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service mysql restart

viggy@ubuntu:/$ service mysql restart
stop: Rejected send message, 1 matched rules; type="method_call", sender=":1.83" (uid=1000 pid=4395 comm="stop mysql ") interface="com.ubuntu.Upstart0_6.Job" member="Stop" error name="(unset)" requested_reply="0" destination="com.ubuntu.Upstart" (uid=0 pid=1 comm="/sbin/init")

我不确定那条消息到底表达了什么。

答案1

您需要 root 权限或使用

sudo service mysql restart

为了以 root 身份发送重启命令。

答案2

mysql是客户端。您可能需要service mysqld restart。除非您以 root 身份运行,否则您可能还想添加sudo到命令中。

相关内容