MySQL: How to stop, start or restart mysql?
Aug 10, 2011 - by kurinchilamp / MySql / Post Comment
In linux, following commands are used to start/stop/restart mysql
$/etc/init.d/mysqld start
$/etc/init.d/mysqld restart
$/etc/init.d/mysqld stop
In windows, mysql runs as a service.
C:> net stop mysql
C:> net start mysql
Continue Reading