Challenges setting up TLS on Mongodb8.0

Formatting code and log snippets in posts

The message received is because mutual tls is configured, not because X509 auth is enabled. To not use mutual tls:

To bypass client certificate validation for clients that do not present a certificate, include net.tls.allowConnectionsWithoutCertificates set to true.

https://www.mongodb.com/docs/manual/tutorial/configure-ssl/#validate-only-if-a-client-presents-a-certificate

1 Like