# To Start MySQL Server /sbin/service mysqld start # To Stop MySQL Server /sbin/service mysqld stop # To Restart MySQL Server /sbin/service mysqld restart And of course there is the brute force way to kill all the processes: $ for i in `ps -ef |grep mysqld |awk ‘{print $2}’`; do `kill -9 $i`; done Thanks to Anthony Eden for the comment (below) [...]
# To Start MySQL Server /sbin/service mysqld start # To Stop MySQL Server /sbin/service mysqld stop
# To Restart MySQL Server /sbin/service mysqld restart And of course there is the brute force way to kill all the processes: $ for i in `ps -ef |grep mysqld |awk ‘{print $2}’`; do `kill -9 $i`; done Thanks to Anthony Eden for the comment (below) [...]
Please fill in the following fields
* - Required
Your Name: *
Your E-Mail: *
Your Remarks:
Friend's Name: *
Friend's E-Mail: *