1.安装mariadb服务
yum install mariadb-server
启动mariadb服务
systemctl start mariadb.service
输入mysql就能使用数据库了。
2.服务相关操作
systemctl stop mariadb.service
systemctl restart mariadb.service
2.配置开机自启动
systemctl enable mariadb.service
systemctl disenable mariadb.service
3. mariadb初始化
没有初始化之前,不使用密码也能访问数据库
初始化
mysql_secure_installation
初始化后要重启数据库服务
4.使用远程数据库连接工具
授予远程登陆权限
use mysql;
update user set host="%" where host="localhost";
权限刷新或者重启服务
flush privileges;
开放防火墙3306端口
firewall-cmd --zone=public --add-port=3306/tcp --permanent
firewall-cmd --reload