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命令启动数据库即可。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM