CentOS安装MariaDB数据库(MySQL的分支)
由于MySQL已经有闭源的趋势,所以大部分系统已经不建议使用MySQL,Mariadb是MySQL之父创建的一个MySQL分支项目,使用起来几乎一模一样。
1.CentOS安装MariaDB
# yum install mariadb-server mariadb-client
2.运行数据库
# systemctl start mariadb
3.进入数据库并创建一个production数据库
# mysql # MariaDB [(none)]> create database production; # MariaDB [(none)]> use production; # MariaDB [(none)]> flush privileges;
4.为production数据库创建一个远程登陆的用户
# MariaDB [(none)]> create user 'test1'@'%' identified by 'test1'; # MariaDB [(none)]> grant all privileges on production.* to test1 identified by 'test1'; # MariaDB [(none)]> flush privileges;
5.使用test1用户连接数据库
# mysql -u test1 -p Enter password: test1
6.登陆成功!
MariaDB 的详细介绍:请点这里
MariaDB 的下载地址:请点这里
相关推荐
Gexrior 2020-10-22
Lostinthewoods 2020-10-29
txt 2020-06-14
azhou 2020-06-12
hungzz 2020-06-11
CharlesYooSky 2020-06-05
aliuge 2020-06-03
URML 2020-05-30
lwwishes 2020-05-29
83173052 2020-05-29
tanyhuan 2020-05-28
muzirigel 2020-05-26
饮马天涯 2020-05-20
aliuge 2020-05-12
83173052 2020-05-10
Mrbianxin 2020-05-07
InJavaWeTrust 2020-05-04