大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
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