Linux database related commands under mariadb

Disclaimer: This article is a blogger original article, shall not be reproduced without the bloggers allowed. https://blog.csdn.net/God_V/article/details/80816770

MariaDB MySQL database management system is a branch, mainly by the open source community in the maintenance, under the GPL license. One reason for the development of this branch is: after Oracle's acquisition of MySQL, there are potential risks to MySQL closed source, so the branch community a way to avoid this risk. MariaDB purpose is fully compatible with MySQL, including API and command line, so that it can easily become a substitute for MySQL.

installation:

yum install mariadb-server mariadb

Related command:

systemctl start mariadb # start MariaDB

systemctl stop mariadb #停止MariaDB

systemctl restart mariadb #重启MariaDB

systemctl enable mariadb # Set boot

Guess you like

Origin blog.csdn.net/God_V/article/details/80816770