如何让别人能够远程连接数据库

Mysql8.0 远程连接数据库

在Java开发项目中需要许多人会同时访问同一个数据库,将数据库能够让别人远程连接的方法如下

  1. 使用MySql 数据库

    use mysql;
    
  1. 修改root用户的可访问路径为%,%即所有地址可以访问

     update user set host='%' where user='root';
    
  1. 设置root用户密码加密方式为 mysql_native_password

    update user set plugin='mysql_native_password' where user='root';
    
  1. 设置远程访问授权

    grant all on *.* to 'root'@'%';
    
  1. 刷新权限设置

    flush privileges;
    

完成以下设置之后别人就可以通过root账户对数据库远程访问。

你可能感兴趣的:(如何让别人能够远程连接数据库)