Backup error: OpenSSL::SSL::SSLError: SSL_CTX_load_verify_file: system lib

In case it helps others. The solution was fairly simple.

ln -s /etc/ssl/certs/ca-certificates.crt /usr/lib/ssl/cert.pem

Ruby is looking for /usr/lib/ssl/cert.pem and it wasn’t there. Creating a symlink to ca-certificates.crt was the solution.

After creating the link, backups work as expected.

1 Like