To restart the MySQL server, you can use the following command in your terminal:
sudo systemctl restart mysql
Alternatively, if you're using a different system, you can try:
sudo service mysql restart
This will stop and then start the MySQL server. After restarting, you can check the status with:
sudo systemctl status mysql
Let me know if you need further assistance!
