十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
yum -y install mariadb-server mariadb
systemctl start mariadb
MySQL
select * from mysql.user\G
grant all on *.* to 'root'@'%' identified by '123456'
update mysql.user set Grant_priv='Y' where Host='%'
delete from mysql.user where Host<>'%' or User<>'root'
quit
systemctl restart mariadb