I have been trying to implement a solution which involves dumping a database from our SingleStore cluster.
I have tried using mysql client on Windows and MariaDB client on Ubuntu.
mysqldump --host HOST --port 3306 --user USER -pPASSWORD --result-file singlestore_test.sql -B test
mysqldump: [Warning] Using a password on the command line interface can be insecure.
mysqldump: Got error: 1045: Access denied for user ‘ethings_test’@‘100.96.5.72’ (using password: YES) when trying to connect
Could You please advise what setting I have to check to let this command go through?
Thank You
Attila
Dear Maria,
Thank You for the response. Our current software level of the cluster seems to be 7.6.21
I do not know if that is better or worse than 7.6.16
Hi arnaud!
Thank for the tip. Based on the documentation the password needs to be after the -p without a white space. I also tried it with white space and also with quotation marks, to no avail.
Maybe with the username you use, you might not have the permission to use the dump command since you got access denied. Do you test it with an admin username?