惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
雷峰网
雷峰网
The Cloudflare Blog
WordPress大学
WordPress大学
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
IT之家
IT之家
V
V2EX
博客园 - 司徒正美
小众软件
小众软件
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 叶小钗
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Install MongoDB on Ubuntu 24.04: Secure Setup with Authen...
Serdar Tekin · 2026-05-04 · via DEV Community

MongoDB is a document database that stores data as flexible JSON-like documents instead of fixed rows and columns. It is commonly used for web applications, REST APIs, content management systems, and real-time analytics where the data model changes frequently.

This tutorial walks through installing MongoDB Community Edition on Ubuntu 24.04, enabling authentication, creating an admin user, creating an application database user, testing basic CRUD operations, and securing access with UFW.

Prerequisites

You will need:

  • An Ubuntu 24.04 VPS or cloud server
  • SSH access
  • A non-root user with sudo privileges
  • UFW installed and configured
  • At least 2 vCPU and 4 GB RAM for a comfortable MongoDB setup

Step 1 — Add the MongoDB Repository

MongoDB is not included in Ubuntu 24.04's default repositories. To install the latest stable MongoDB Community Edition packages, add the official MongoDB APT repository.

Import the MongoDB GPG key:

curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | sudo gpg --dearmor -o /usr/share/keyrings/mongodb-server-8.0.gpg

Enter fullscreen mode Exit fullscreen mode

Add the MongoDB repository for Ubuntu 24.04 Noble:

echo "deb [signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list

Enter fullscreen mode Exit fullscreen mode

Update the package index:

sudo apt update

Enter fullscreen mode Exit fullscreen mode

You should see the MongoDB repository listed in the output without errors.

Note: If you see a GPG key error, verify the key import command and try again.

Step 2 — Install MongoDB

Install the MongoDB Community Edition meta-package:

sudo apt install -y mongodb-org

Enter fullscreen mode Exit fullscreen mode

This installs the MongoDB server, shell, tools, and related packages.

Start MongoDB:

sudo systemctl start mongod

Enter fullscreen mode Exit fullscreen mode

Enable MongoDB to start automatically on boot:

sudo systemctl enable mongod

Enter fullscreen mode Exit fullscreen mode

Check the service status:

sudo systemctl status mongod

Enter fullscreen mode Exit fullscreen mode

You should see active (running).

Check the installed version:

mongod --version

Enter fullscreen mode Exit fullscreen mode

Expected output:

db version v8.0.x

Enter fullscreen mode Exit fullscreen mode

If mongod fails to start, check the logs:

sudo journalctl -u mongod -e

Enter fullscreen mode Exit fullscreen mode

Note: A common issue on fresh installs is a missing data directory. MongoDB expects /var/lib/mongodb to exist with the correct ownership.

Now connect to the MongoDB shell:

mongosh

Enter fullscreen mode Exit fullscreen mode

You should see the MongoDB shell prompt:

test>

Enter fullscreen mode Exit fullscreen mode

Type exit to disconnect.

Warning: At this point, MongoDB is running without authentication. Anyone with network access could connect, so authentication should be enabled before exposing MongoDB beyond localhost.

Step 3 — Create the Admin User

Before enabling authentication, create an admin user.

Connect to the MongoDB shell:

mongosh

Enter fullscreen mode Exit fullscreen mode

Switch to the admin database:

use admin

Enter fullscreen mode Exit fullscreen mode

Create an admin user:

db.createUser({
  user: "admin",
  pwd: "your_strong_admin_password",
  roles: [
    { role: "userAdminAnyDatabase", db: "admin" },
    { role: "readWriteAnyDatabase", db: "admin" }
  ]
})

Enter fullscreen mode Exit fullscreen mode

Replace your_strong_admin_password with a strong password. You should see:

{ ok: 1 }

Enter fullscreen mode Exit fullscreen mode

Exit the shell:

exit

Enter fullscreen mode Exit fullscreen mode

You can generate a strong password with:

openssl rand -base64 24

Enter fullscreen mode Exit fullscreen mode

Tip: Store the password securely. You will need it when connecting to MongoDB with authentication enabled.

Step 4 — Enable Authentication

By default, MongoDB accepts connections without credentials. On a server, that is a serious security risk.

Open the MongoDB configuration file:

sudo nano /etc/mongod.conf

Enter fullscreen mode Exit fullscreen mode

Find the commented security section and change it to:

security:
  authorization: enabled

Enter fullscreen mode Exit fullscreen mode

Note: Make sure authorization: enabled is indented with two spaces. YAML is whitespace-sensitive.

Also verify the net section:

net:
  port: 27017
  bindIp: 127.0.0.1

Enter fullscreen mode Exit fullscreen mode

This configuration makes MongoDB listen only on localhost. Save the file and restart MongoDB:

sudo systemctl restart mongod

Enter fullscreen mode Exit fullscreen mode

Verify that MongoDB restarted successfully:

sudo systemctl status mongod

Enter fullscreen mode Exit fullscreen mode

Now test that authentication is enforced. Connect without credentials:

mongosh

Enter fullscreen mode Exit fullscreen mode

Try to list databases:

show dbs

Enter fullscreen mode Exit fullscreen mode

You should see an authorization error. This confirms that authentication is working.

Exit and reconnect with the admin user:

mongosh -u admin -p --authenticationDatabase admin

Enter fullscreen mode Exit fullscreen mode

Enter your password when prompted. Now this command should work:

show dbs

Enter fullscreen mode Exit fullscreen mode

You should see the admin, config, and local databases.

Step 5 — Create an Application Database and User

Do not run your application as the admin user. Create a dedicated database and user for each application.

While connected as the admin user, switch to a new database:

use appdb

Enter fullscreen mode Exit fullscreen mode

MongoDB creates the database automatically when data is first written to it.

Create an application user with read-write access only to this database:

db.createUser({
  user: "appuser",
  pwd: "your_app_password",
  roles: [
    { role: "readWrite", db: "appdb" }
  ]
})

Enter fullscreen mode Exit fullscreen mode

Exit and reconnect as the application user:

mongosh -u appuser -p --authenticationDatabase appdb

Enter fullscreen mode Exit fullscreen mode

Switch to the application database:

use appdb

Enter fullscreen mode Exit fullscreen mode

This user can read and write in appdb, but does not have access to other databases.

Step 6 — Test Basic CRUD Operations

Verify that the database works by performing basic Create, Read, Update, and Delete operations.

Insert documents into a collection:

db.products.insertMany([
  { name: "Starter Plan", price: 5.00, cpu: 1, ram: 1 },
  { name: "Growth Plan", price: 20.00, cpu: 2, ram: 4 },
  { name: "Scale Plan", price: 60.00, cpu: 8, ram: 16 }
])

Enter fullscreen mode Exit fullscreen mode

MongoDB creates the collection automatically.

Read all documents:

db.products.find()

Enter fullscreen mode Exit fullscreen mode

Find one document:

db.products.findOne({ name: "Growth Plan" })

Enter fullscreen mode Exit fullscreen mode

Update a document:

db.products.updateOne(
  { name: "Starter Plan" },
  { $set: { price: 6.00 } }
)

Enter fullscreen mode Exit fullscreen mode

Delete a document:

db.products.deleteOne({ name: "Scale Plan" })

Enter fullscreen mode Exit fullscreen mode

Count documents in the collection:

db.products.countDocuments()

Enter fullscreen mode Exit fullscreen mode

Notice that you did not define a schema or create a table before inserting data. In MongoDB, the schema is implicit in the documents themselves.

Clean up the test data:

db.products.drop()
exit

Enter fullscreen mode Exit fullscreen mode

Step 7 — Configure the Firewall

By default, MongoDB listens on port 27017 and accepts connections only from localhost. If your application runs on the same server, you do not need to open the MongoDB port.

If you need to allow MongoDB connections from another server on a private network, first update the bind address in /etc/mongod.conf:

net:
  port: 27017
  bindIp: 127.0.0.1,10.0.0.5

Enter fullscreen mode Exit fullscreen mode

Replace 10.0.0.5 with your server's private IP address. Restart MongoDB:

sudo systemctl restart mongod

Enter fullscreen mode Exit fullscreen mode

Then allow access from the application server's private IP range:

sudo ufw allow from 10.0.0.0/24 to any port 27017

Enter fullscreen mode Exit fullscreen mode

Warning: Never bind MongoDB to 0.0.0.0 or open port 27017 to the public internet without strict access controls. Unsecured MongoDB instances are actively scanned by automated bots and can be compromised quickly.

Useful MongoDB Commands

Common shell commands:

show dbs                                 // List all databases
use dbname                               // Switch to a database
show collections                         // List collections in current database
db.collection.find()                     // List all documents
db.collection.find().pretty()            // Formatted output
db.collection.countDocuments()           // Count documents
db.collection.createIndex({ field: 1 })  // Create an index
db.stats()                               // Database statistics
db.collection.stats()                    // Collection statistics

Enter fullscreen mode Exit fullscreen mode

User administration commands:

db.getUsers()          // List users in current database
db.createUser({...})   // Create a user
db.dropUser("username") // Delete a user
db.shutdownServer()    // Graceful shutdown from admin db

Enter fullscreen mode Exit fullscreen mode

Important MongoDB paths:

/etc/mongod.conf             Main configuration file
/var/lib/mongodb/            Data directory
/var/log/mongodb/mongod.log  Log file

Enter fullscreen mode Exit fullscreen mode

Service management commands:

sudo systemctl start mongod
sudo systemctl stop mongod
sudo systemctl restart mongod
sudo systemctl status mongod

Enter fullscreen mode Exit fullscreen mode

Conclusion

You have installed MongoDB Community Edition on Ubuntu 24.04, created an admin user, enabled authentication, created an application database with a dedicated user, tested the setup with CRUD operations, and configured firewall access.

From here, you can:

  • Connect a Node.js application using the official MongoDB Node.js driver or Mongoose
  • Connect a Python application using PyMongo
  • Set up automated backups with mongodump
  • Create indexes on frequently queried fields
  • Monitor MongoDB with Prometheus and Grafana using the MongoDB exporter
  • Manage MongoDB alongside other services using tools such as Portainer

MongoDB is now ready to support applications that need flexible document storage on Ubuntu 24.04.


I'm Serdar, co-founder of Raff — affordable and reliable cloud infrastructure built to be the one platform your app needs — compute, storage, and beyond.