Home  >  Article  >  Database  >  安装完MySQL,在配置最后一步报错error Nr.1364

安装完MySQL,在配置最后一步报错error Nr.1364

WBOY
WBOYOriginal
2016-06-07 15:25:171916browse

在安装完MySQL,在配置最后一步报错error Nr.1364 解决办法: 1、暂时不要关闭该窗口,cmd命令,执行mysql -uroot -ppassword 登录进去 ( 如果登陆不进去,直接mysql -u用户名 不输密码 ) 2、执行 use mysql; ALTER TABLE `user` CHANGE COLUMN `authentica

在安装完MySQL,在配置最后一步报错error Nr.1364

  解决办法: 

  1、暂时不要关闭该窗口,cmd命令,执行mysql -uroot -ppassword 登录进去  (如果登陆不进去,直接mysql -u用户名  不输密码

  2、执行 use mysql;   ALTER TABLE `user`  CHANGE COLUMN `authentication_string` `authentication_string` TEXT NULL COLLATE ‘utf8_bin’ AFTER `plugin`;  

 3、打开刚才错误窗口,回退,然后next即可。 

  4、安装MySQL GUI Tools就可以进行操作了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Oracle SERVICENext article:Redis 与Mysql通信