Skip to main content

One post tagged with "MySql"

View All Tags

Starting and Stopping the MySQL Server

· One min read

By Default MySQL server is started automatically after installation. Wd can check/verify the status of the MySQL server with the following command:

sudo service mysql status

Stop the MySQL server with the following command:

sudo service mysql stop

To restart the MySQL server, use the following command:

sudo service mysql start