Closed JarnDev closed 1 month ago
I have a MongoDB cluster string connection that looks like this:
mongoDB://<USER>:<PASS>@<URL>:<PORT>/?tls=true&tls_ca_certs=<cert-file.pem>&replicaSet=rs&readPreference=secondaryPreferred&retryWrites=false
The error:
It's a DBUI error, but it's referring to a connection problem!
Is there a way to enable the TLS_CA_CERTS?
Solved the situation using tlsCAFile instead of tls_ca_certs
tlsCAFile
tls_ca_certs
I have a MongoDB cluster string connection that looks like this:
mongoDB://<USER>:<PASS>@<URL>:<PORT>/?tls=true&tls_ca_certs=<cert-file.pem>&replicaSet=rs&readPreference=secondaryPreferred&retryWrites=false
The error:
It's a DBUI error, but it's referring to a connection problem!
Is there a way to enable the TLS_CA_CERTS?