Bootstrap

throw err// Rethrow non-MySQL errors

原因:node链接数据库的时候,因为mysql版本的升级导致

解决办法:

  1. 打开cmd,进入到mysql的操作页面
  2. 执行两句操作
  • alter user 'root'@'localhost' identified with mysql_native_password by '密码';
  • flush privileges;

执行完,quit退出,重新启动即可解决报错

 

;