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

Linux启动/停止/重启Mysql数据库的方法——转载

时间:2014-11-06 10:46:30      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   os   使用   sp   strong   数据   on   

Mysql启动、停止、重启常用命令


a、启动方式
1、使用 service 启动:
[root@localhost /]# service mysqld start (5.0版本是mysqld)
[root@szxdb etc]# service mysql start (5.5.7版本是mysql)

2、使用 mysqld 脚本启动:
/etc/inint.d/mysqld start

3、使用 safe_mysqld 启动:
safe_mysqld&

 

b、停止
1、使用 service 启动:
service mysqld stop

2、使用 mysqld 脚本启动:
/etc/inint.d/mysqld stop

3、mysqladmin shutdown

 

c、重启
1、使用 service 启动:
service mysqld restart
service mysql restart (5.5.7版本命令)

2、使用 mysqld 脚本启动:
/etc/init.d/mysqld restart

Linux启动/停止/重启Mysql数据库的方法——转载

标签:style   color   ar   os   使用   sp   strong   数据   on   

原文地址:http://www.cnblogs.com/xiehy/p/4077857.html

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