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
windows command prompt mysql start stop
Jan 20, 2009 - by kurinchilamp / MySql / Post Comment
To start MySQL service from Windows command prompt
c:\mysql\bin> net start mysql
To stop MySQL service from Windows command prompt
c:\mysql\bin> net stop mysql
Continue Reading