shutdown - Stop MySQL service windows -
i developing website , need refresh data. therefore mysql must stopped.
how can stop service?
when @ control panel services started without stop or restart option.
on windows
if using windows open command prompt , type
to stop mysql service
net stop mysql to start mysql service
net start mysql. on linux
expand|select|wrap|line numbers
# /etc/init.d/mysqld start # /etc/init.d/mysqld stop # /etc/init.d/mysqld restart fedora / red hat support this:
expand|select|wrap|line numbers # service mysqld start # service mysqld stop # service mysqld restart i know answer late hope helps one.
Comments
Post a Comment