host is not allowed to connect to this mysql serve

有时候在连接数据库时,会出现host is not allowed to connect to this mysql server 的错误报告,用root登入还是报这个错。

 

出现这个错误说明服务器不让你登入,必需新建一个账户,然后把你的库的权限赋给这个用户

 

假如Database:Test  
  创建用户:Jacky   密码:   pwd  
  进入Mysql  
   
  >grant   insert,delete,update,select,drop,create   on   Test.*   to   Jacky@"%"   identified   by   "pwd";     
 

你可能感兴趣的:(mysql)