Su Windows
Se utilizzi Windows, apri il prompt dei comandi e digita
Per interrompere il servizio MySQL:
net stop MySQL80
Per avviare il servizio MySQL:
net start MySQL80
Su Linux
# /etc/init.d/mysqld start
# /etc/init.d/mysqld stop
# /etc/init.d/mysqld restart
Fedora / Red Hat supportano anche questo:
# service mysqld start
# service mysqld stop
# service mysqld restart
Anche le distribuzioni basate su Systemd (come Ubuntu o Arch Linux) supportano questo:
# systemctl start mysql
# systemctl stop mysql
# systemctl restart mysql
So che questa risposta è in ritardo, ma spero che aiuti qualcuno.