安装mariadb以及容许远程访问

  1. 下载mariadb:
    yum -y install mariadb-server mariadb
  2. 开启mariadb服务:
    systemctl start mariadb
  3. 无密码登陆mariadb:
    mysql
  4. 查看用户表:
    select * from mysql.user\G
  5. 添加远程访问用户:
    grant all on *.* to 'root'@'%' identified by '123456'
  6. 设置添加用户的受权权限:
    update mysql.user set Grant_priv='Y' where Host='%'
  7. 移除匿名用户:
    delete from mysql.user where Host<>'%' or User<>'root'
  8. 退出mariadb命令行:
    quit
  9. 重启mariadb:
    systemctl restart mariadb
相关文章
相关标签/搜索