restarting mysql

1

Eu tento reiniciar o servidor mysql no Ubuntu 12.04:

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")

Não tenho certeza do que essa mensagem está dizendo.

    
por JohnMerlino 08.11.2012 / 18:54

2 respostas

3

Você precisa ser root ou usar

sudo service mysql restart

para enviar o comando restart como root.

    
por 08.11.2012 / 18:58
1

mysql é o cliente. Você provavelmente deseja service mysqld restart . E a menos que você esteja rodando como root, você provavelmente vai querer adicionar sudo ao comando também.

    
por 08.11.2012 / 19:01

Tags