一.关于MariaDB
MariaDB 数据库管理系统是 MySQL 的一个分支,主要由开源社区在维护,采用 GPL 授权许可。开发这个分支的原因之一是:甲骨文公司收购了 MySQL 后,有将 MySQL 闭源的潜在风险,因此社区采用分支的方式来避开这个风险。MariaDB完全兼容mysql,使用方法也是一样的
二.部署MariaDB
1、安装MariaDB
通过apt安装简单快捷,安装mariadb-server,默认依赖安装mariadb,一个是服务端、一个是客户端。
[root@debian ~]# apt install mariadb-server
2、配置MariaDB
1)安装完成后首先要把MariaDB服务开启,并设置为开机启动
[root@debian ~]# systemctl start mariadb # 开启服务
[root@debian ~]# systemctl enable mariadb # 设置为开机自启动服务
2)首次安装需要进行数据库的配置,命令都和mysql的一样
[root@debian ~]# mysql_secure_installation
Enter current password for root (enter for none):
# 输入数据库超级管理员root的密码(注意不是系统root的密码),第一次进入还没有设置密码
Switch to unix_socket authentication [Y/n] n
# 是否切换到unix套接字身份验证[Y/n]
Set root password? [Y/n]
# 设置密码,y
New password:
# 新密码
Re-enter new password:
# 再次输入密码
Remove anonymous users? [Y/n]
# 移除匿名用户, y
Disallow root login remotely? [Y/n]
# 拒绝root远程登录,n,不管y/n,都会拒绝root远程登录
Remove test database and access to it? [Y/n]
# 删除test数据库,y:删除。n:不删除,数据库中会有一个test数据库,一般不需要
Reload privilege tables now? [Y/n]
# 重新加载权限表,y。或者重启服务也许
3)测试是否能够登录成功,出现 MariaDB [(none)]> 表示能够正常登录使用MariaDB数据库
[root@debian ~]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 37
Server version: 10.5.15-MariaDB-0+deb11u1 Debian 11
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
3、远程链接mariadb数据库
mariadb默认是拒绝 root 远程登录的。这里用的是 navicat 软件连接数据库
修改配置文件
vim /etc/mysql/mariadb.conf.d/50-server.cnf
#将
bind-address = 127.0.0.1
#改为
bind-address = 0.0.0.0
添加root远程权限
MariaDB [(none)]> grant all privileges on *.* to 'root'@'%' identified by '你的root密码';
Query OK, 0 rows affected (0.016 sec)
刷新权限表,或重启mariadb服务,一下二选一即可
MariaDB [mysql]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
[root@debian ~]# systemctl restart mariadb
注意:刷新权限表是在数据库中,重启服务是在外部命令行中