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

Posted zsw_sh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux启动/停止/重启Mysql数据库的方法相关的知识,希望对你有一定的参考价值。

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

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

以上是关于Linux启动/停止/重启Mysql数据库的方法的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

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

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

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