在MYSQL中添加用户的时候,如果遇到已经设置了密码,但是无法登陆的情况,可能是下列问题:

 

设置用户的时候,格式应该是:

grant insert , delete ,update , select 

on *.*

to test@localhost  IDENTIFIED BY "123.com"

with grant option

;

需要注意的是,用户名这块必须加上@localhost 这块,否则用户不属于任何主机,就无法登陆。