请问:如何在mysql服务器上添加一个允许远程访问的用户?最好有步骤

解决方案 »

  1.   

    比如权限是 ALL
    grant all privileges on *.* to 'remote_user'@'remote host address' identified by 'password';
    flush privileges;
      

  2.   

    http://www.programmerstudy.com/database/mysql/20084/143.html
      

  3.   

    看看下面的文章
    http://www.programmerstudy.com/database/mysql/20084/143.html
      

  4.   

    http://www.programmerstudy.com/database/mysql/20084/143.html
      

  5.   

    如果你安装了MySQL Administrator的话,只要选中Startup Variables里的Security中的Disabled grand tables属性就可以了.这样一来,大家都可以访问你的数据库了
      

  6.   

    grant all privileges on *.* to 'remote_user'@'remote host address' identified by 'password'; 
    flush privileges; 最简单直接的办法!