MongoDB Tutorial 0/120 lessons ~6 min read Lesson 77

    Authentication

    Authentication proves who is connecting.

    Course progress0%
    Focus
    2 guided sections
    Practice signal
    Concept-first lesson
    Career prep
    Foundation builder

    Introduction

    Authentication proves who is connecting. MongoDB supports SCRAM (default), x.509 certs, LDAP, Kerberos and OIDC. Atlas adds passwordless cloud-provider auth.

    Syntax reference

    js
    db.createUser({
    user: "appUser",
    pwd: passwordPrompt(),
    roles: [{ role: "readWrite", db: "shop" }]
    });
    Ready to mark this lesson complete?Track your journey across the entire course.