Authentication on Self-Managed Deployments
Authentication is the process of verifying the identity of a client. When access control (authorization) is enabled, MongoDB requires all clients to authenticate themselves in order to determine their access.
Although authentication and authorization are closely connected, authentication is distinct from authorization:
Authentication verifies the identity of a user.
Authorization determines the verified user's access to resources and operations.
You can configure authentication through the UI for deployments hosted in MongoDB Atlas.
Getting Started
To get started using access control, follow these tutorials:
Authentication Mechanisms
SCRAM Authentication
Salted Challenge Response Authentication Mechanism (SCRAM) is the default authentication mechanism for MongoDB.
For more information on SCRAM and MongoDB, see:
x.509 Certificate Authentication
MongoDB supports x.509 certificate authentication for client authentication and internal authentication of the members of replica sets and sharded clusters. x.509 certificate authentication requires a secure TLS/SSL connection.
To use MongoDB with x.509, you must use valid certificates generated and signed by a certificate authority. The client x.509 certificates must meet the client certificate requirements.
For more information on x.509 and MongoDB, see:
Kerberos Authentication
MongoDB Enterprise supports Kerberos Authentication. Kerberos is an industry standard authentication protocol for large client/server systems that provides authentication using short-lived tokens that are called tickets.
To use MongoDB with Kerberos, you must have a properly configured Kerberos deployment, configured Kerberos service principals for MongoDB, and a Kerberos user principal added to MongoDB.
For more information on Kerberos and MongoDB, see:
LDAP Proxy Authentication
MongoDB Enterprise and MongoDB Atlas support LDAP Proxy Authentication proxy authentication through a Lightweight Directory Access Protocol (LDAP) service.
For more information on Kerberos and MongoDB, see:
Authenticate Using Self-Managed SASL and LDAP with ActiveDirectory
Authenticate and Authorize Users Using Self-Managed Active Directory with Native LDAP
These mechanisms allow MongoDB to integrate into your existing authentication system.
Internal / Membership Authentication
In addition to verifying the identity of a client, MongoDB can require members of replica sets and sharded clusters to authenticate their membership to their respective replica set or sharded cluster. See Self-Managed Internal/Membership Authentication for more information.