mysqldump Error 1045 Access denied despite correct passwords etc

后端 未结 28 1232
执笔经年
执笔经年 2021-01-30 12:56

This is a tricky one, I have the following output:

mysqldump: Got error: 1045: Access denied for user \'root\'@\'localhost\' (using password: YES) when tr

28条回答
  •  面向向阳花
    2021-01-30 13:09

    Mysql replies with Access Denied with correct credentials when the mysql account has REQUIRE SSL on

    The ssl_ca file (at a minimum) had to be provided in the connection paramiters.

    Additional ssl parameters might be required and are documented here: http://dev.mysql.com/doc/refman/5.7/en/secure-connection-options.html


    Also posted here https://stackoverflow.com/a/39626932/1695680

提交回复
热议问题