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

前端之家收集整理的这篇文章主要介绍了Ubuntu启动/停止/重启Mysql数据库的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

注意:在centos 系统下进行和Ubuntu系统里面是不同,Ubuntu里面需要将centos 里面使用的命令中的MysqLd后面的d去掉,下面所示所有命令直接使用MysqLd替换掉MysqL即可


一、查看MysqL版本


方法一:status;

方法二:select version();


二、linux下查看MysqL服务的两种方式:


方式一:

[root@localhost bin]ps -ef|grep MysqL

方式二:

[root@localhost bin]netstat -nlp

三、linux下启动MysqL服务的两种方式:


命令行方式:

[root@localhost bin]cd /usr/bin
[root@localhost bin]./MysqLd_safe &

服务方式:

[root@localhost ~]service MysqL start
如果服务在启动状态,直接重启服务用以下命令:
[root@localhost ~]service MysqL restart

四、linux下关闭MysqL服务的两种方式:


命令行方式:

[root@localhost ~]MysqLadmin -u root shutdown

服务方式:

[root@localhost ~]service MysqL stop
原文链接:https://www.f2er.com/ubuntu/349991.html

猜你在找的Ubuntu相关文章