MySQL数据库设置远程访问权限方法小结 简单,粗暴,有截图

时间:2022-09-18 22:23:34

当然,你必须进入mysql中 (原文地址:http://www.jb51.net/article/42441.htm)


1,设置访问单个数据库权限

  mysql>grant all privileges on test.* to 'root'@'%';

  说明:设置用户名为root,密码为空,可访问数据库test



2.设置访问全部数据库权限

   mysql>grant all privileges on *.* to 'root'@'%';

    说明:设置用户名为root,密码为空,可访问所有数据库*


3.设置指定用户名访问权限

  mysql>grant all privileges on *.* to 'testyonghu'@'%';

 说明:设置指定用户名为 testyonghu,密码为空,可访问所有数据库*


4.设置密码访问权限

  mysql>grant all privileges on *.* to 'zhangsan'@'%' IDENTIFIED BY '123456';

说明:设置指定用户名为zhangsan,密码为123456,可访问所有数据库*



5.设置指定可访问主机权限

 grant all privileges on *.* to 'lisi'@'10.2.1.11';

 说明:设置指定用户名为lisi,可访问所有数据库*,只有10.2.1.11这台机器有权限访问



所有的设置完之后,还需要  执行 mysql>  FLUSH PRIVILEGES;

然后退出mysql生效


最后来张图吧,无图无真相

MySQL数据库设置远程访问权限方法小结 简单,粗暴,有截图