你是怎么连接的呢?
现在有个mysql的管理工具,
可以让你象用sqlserver一样管理mysql
去mysql的网站看看!
还有,即使你不用管理工具,
连接远程机器的时候,最好不要用mysql的缺省帐号root
新加个帐号再连接试试!

解决方案 »

  1.   

    在2000下使用mysql -192.168.1.1 -uroot -p连接提示错误
    ERROR 1251: Client does not support authentication protocol requested by server;
     consider upgrading MySQL client
      

  2.   

    不好意思是  mysql -h192.168.1.1 -uroot -p
      

  3.   

    连接上了送分先
    原因是用户的登陆权限没有开放为%
    使用命令
    grant all on *.* to mysql@"%";
    后来人参考一下