在安装mysql 5.5.8的最后一步,应用安全配置时,
弹出错误对话框, Error Nr.1364 authentication_string
解决办法:
1,暂时不要关闭该窗口,cmd进入mysql bin目录,然后打开mysql.exe -uroot -ppassword登录进去
2,执行
ALTER TABLE `user` CHANGE COLUMN `authentication_string`
`authentication_string` TEXT NULL COLLATE 'utf8_bin' AFTER `plugin`;
3,打开刚才错误窗口,回退,然后next即可