Home > Database > Mysql Tutorial > body text

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

WBOY
Release: 2016-06-07 15:25:17
Original
1871 people have browsed it

在安装完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就可以进行操作了。

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!