What does this error mean in mariadb ssl :: ERROR 2026 (HY000): SSL connection error: SSL_CTX_set_default_verify_paths failed

What does this error mean in mariadb ssl :: ERROR 2026 (HY000): SSL connection error: SSL_CTX_set_default_verify_paths failed

This happens if I enter -ssl-ca = / etc / mysql / newcerts / ca-cert.pem when a user logs in with an ssl request. I understand that in order to make a connection, I need this.

+4
source share
1 answer

The error SSL_CTX_set_default_verify_paths failedoccurs if the paths to any of the certificate files are invalid (either missing or have incorrect permissions).

In your case, I suspect that the problem is that either the rights to are /etc/mysql/newcerts/ca-cert.pemtoo strict or the path to the file is incorrect.

0
source

All Articles