-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--ssl-verify-server-cert #376
Comments
The issue here is the conflict between In plugin.py here:
Holland tries to establish a normal mysql client connection in order to fetch schema metadata etc. It uses the pymysql lib which for SSL connections needs Now if you add So the only option in my case was to remove the ssl_verify_cert from the
The script then executed fine. In my case I was using the maridb-dump client which accepts the I am not sure if this can be resolved in Holland moving forward? |
Good evening
Firstly a huge thanks for this amazing product. I have been using it in production for over 10 years.
I have just installed version 1.2.10 on Ubuntu 22.04 and am trying to use mysqldump. The raw command:
mysqldump —host myhost.com --port 3306 --user abcd1234 -p --ssl-verify-server-cert --lock-tables --databases my_db > /home/ubuntu/my-db.sql
functions as expected so I know I can connect and use mysqldump.
However,
sudo holland bk
produces the error:MySQL Error (1045, "Access denied for user 'abcd1234'@'10.186.18.12' (using password: YES)")
All credentials in /etc/holland/backupsets/default.conf are correct. I have
additional-options = "--ssl-verify-server-cert"
in my default.conf file but I don't believe it is being used. I have tried to set level = debug in my holland.conf but no details of the commands being executed are output. Evensudo holland -d bk
does not provide any output on the command being executed by mysqldump.Is there possibly an issue with additional-options in 1.2.10? What is the best way to troubleshoot this?
Thanks in advance.
The text was updated successfully, but these errors were encountered: