登录数据库
update mysql.user set authentication_string=password('root'), plugin = 'mysql_native_password' where user = 'root';使用这一行明令将root密码修改为root。
flush privileges;刷新应用权限。
退出并重启MySQL。
数据库导入数据缓存区不够增加缓存区
set global max_allowed_packet=100000000;
set global net_buffer_length=100000;
SET GLOBAL interactive_timeout=28800000;
SET GLOBAL wait_timeout=28800000;