Thursday, June 14, 2012

How to shutdown mysql on Windows

You can use either the utility "net":

cmd> net start mysql
cmd> net stop mysql

, Or use the mysqladmin:

cmd> mysqladmin -u root -p shutdown

Note: The user must have the SHUTDOWN privileges.

No comments: