码迷,mamicode.com
首页 > 数据库 > 详细

MySQL启动和关闭命令总结

时间:2020-07-05 00:39:21      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:--   killall   stop   comm   版本   mysql启动   class   amp   top   

----启动MySQL

mysqld --defaults-file=/etc/my.cnf --user=mysql &
mysqld_safe --defaults-file=/etc/my.cnf --user=mysql &
service mysql start # systemctl start mysqld
/etc/init.d/mysql start
mysqld_multi start #多实例
net start mysql #Windows
----关闭MySQL
mysqladmin -uroot -plhr -S/tmp/mysql3306.sock shutdown #版本对应
service mysql stop # systemctl stop mysqld
/etc/init.d/mysql stop
mysqld_multi stop #多实例
net stop mysql #Windows
mysql> shutdown# above MySQL 5.7.9
--杀死MySQL
killall mysqld
killall -9 mysqld
pkill -9 mysqld

MySQL启动和关闭命令总结

标签:--   killall   stop   comm   版本   mysql启动   class   amp   top   

原文地址:https://www.cnblogs.com/wxwgk/p/13237065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!