ER_NOT_SUPPORTED_AUTH_MODE - MySQL server

前端 未结 11 859
旧时难觅i
旧时难觅i 2020-12-02 10:22

I have setup a MySQL database. When I try to access it through my Node JS server, I am getting the error

\"ER_NOT_SUPPORTED_AUTH_MODE: Client does no

11条回答
  •  生来不讨喜
    2020-12-02 11:09

    just create a new user on MySQL

    CREATE USER 'foo'@'localhost' IDENTIFIED WITH mysql_native_password BY 'bar';
    

提交回复
热议问题