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

Linux上 mysql启动/停止/重启/开机启动/开机禁止启动

时间:2020-06-23 13:47:32      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:启动方式   tar   strong   safe   重启   开机启动   down   blank   linux c   

1、查看mysql版本
方法一:status;
方法二:select version();

2、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

 

3、Mysql开机启动、禁止启动命令

开机不重启:

#chkconfig server  off

server 0:off 1:off 2:off 3:off 4:off 5:off 6:off 

上面的输出0~6都off时表示 没有开机自启动

开启自启动:

#chkconfig server on

参考:Linux chkconfig命令

 

Linux上 mysql启动/停止/重启/开机启动/开机禁止启动

标签:启动方式   tar   strong   safe   重启   开机启动   down   blank   linux c   

原文地址:https://www.cnblogs.com/brithToSpring/p/13181330.html

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