ER_NOT_SUPPORTED_AUTH_MODE - MySQL server

前端 未结 11 852
旧时难觅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:02

    var connection = mysql.createConnection({
      host     : 'localhost',
      user     : 'root',
      password : '********',
      database : 'vod_bill_database',
      port : 3308 
    }); 
    

    I had the same error and since i changed my port in phpmyadmin from 3306 to 3308 therefore here also i had to write port: 3308 and it started working.

提交回复
热议问题