配置数据库开启远程管理
- 安装数据库 yum install -y mariadb*
- 启动数据库 systemctl restart mariadb
- 配置密码 mysql_secure_installation
- 本机登录验证 mysql -uroot -p
- 授权 grant all privileges on *.* to ‘root’@‘%’ identified by ‘123456’;
- 刷新权限 flush privileges;
- 推出 quit
- 关闭主机防火墙 systemctl stop firewalld
- 关闭主机selinux setenforce 0