MySQL—Mysql与MariaDB启停命令的区别
Posted Andya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL—Mysql与MariaDB启停命令的区别相关的知识,希望对你有一定的参考价值。
mysql
MySQL启动
service mysqld start
或者/bin/systemctl start mysqld.service
MySQL状态
service mysqld status
或者/bin/systemctl status mysqld.service
MySQL停止
service mysqld stop
或者/bin/systemctl stop mysqld.service
MySQL重启
service mysqld restart
或者/bin/systemctl restart mysqld.service
MariaDB
MariaDB启动
service mariadb start
或者/bin/systemctl start mariadb.service
MariaDB状态
service mariadb status
或者/bin/systemctl status mariadb.service
MariaDB停止
service mariadb stop
或者/bin/systemctl stop mariadb.service
MariaDB重启
service mariadb restart
或者/bin/systemctl restart mariadb.service
Q&A
Failed to restart mysqld.service: Unit not found
??这种情况一般会在mariadb环境中用service mysqld restart
命令启动数据库而出现。
解决方案:我们只需要在mariadb数据库环境中使用service mariadb restar
命令启动数据库即可。
以上是关于MySQL—Mysql与MariaDB启停命令的区别的主要内容,如果未能解决你的问题,请参考以下文章