mysqldump access denied

后端 未结 9 2131
闹比i
闹比i 2020-12-14 15:23

When I try to backup using mysqldump from ssh, I run the following command on machine 10.64.1.1. It gives the following error.

mysqldump --user=test -p=passwor

9条回答
  •  自闭症患者
    2020-12-14 15:59

    Trying with this command

    mysqldump --user=root -p --host=127.0.0.1 --databases database_name [database_name_2,...] > dump.sql
    

提交回复
热议问题