使用 grant all on im.* for 'im'@'%' identified by 'im'添加用户后,始终无法登录,提示登录失败
原因:由于在本机登录,因此实际上使用'im'@'localhost'登录,mysql会匹配到匿名本地用户,导致登录失败
解决方法:grant all on im.* for 'im'@'localhost' identified by 'im'就OK了
参看:http://www.52vcc.com/untype/172/
使用 grant all on im.* for 'im'@'%' identified by 'im'添加用户后,始终无法登录,提示登录失败
原因:由于在本机登录,因此实际上使用'im'@'localhost'登录,mysql会匹配到匿名本地用户,导致登录失败
解决方法:grant all on im.* for 'im'@'localhost' identified by 'im'就OK了
参看:http://www.52vcc.com/untype/172/