Monday, December 27, 2021

How to start/stop MySQL services in windows and Linux servers

 On Windows


If you are using Windows Open the Command Prompt and type


To Stop MySQL Service:


net stop MySQL80 

To Start MySQL Service:


net start MySQL80

On Linux


# /etc/init.d/mysqld start

# /etc/init.d/mysqld stop

# /etc/init.d/mysqld restart

No comments:

Post a Comment