[ Spring ] Install MongoDB on Ubuntu24

文章目录

          • [Disable THP Service](#Disable THP Service)
          • [Remove File and Process Count Limitation](#Remove File and Process Count Limitation)
          • [Enable Swappiness for MongoDB](#Enable Swappiness for MongoDB)
          • [Install MongoDB](#Install MongoDB)
          • [Enable MongoDB Service](#Enable MongoDB Service)
          • [Create MongoDB Admin User](#Create MongoDB Admin User)
          • [Enable MongoDB Authentication](#Enable MongoDB Authentication)
          • [Create a Normal Database](#Create a Normal Database)
          • [Update User Roles](#Update User Roles)
          • [Insert Document](#Insert Document)
          • [Uninstall MongoDB](#Uninstall MongoDB)
          • [Configure MongoDB Connection in SpringBoot](#Configure MongoDB Connection in SpringBoot)
          • [Preference Guidance](#Preference Guidance)
Disable THP Service

this allow you create a startup service for mongo db

bash 复制代码
sudo nano /etc/systemd/system/disable-thp.service

append this script to file end, press Ctrl+X Y Enter to save

bash 复制代码
[Unit]
Description=Disable Transparent Huge Pages (THP)

[Service]
Type=simple
ExecStart=/bin/sh -c "echo 'never' > /sys/kernel/mm/transparent_hugepage/enabled && echo 'never' > /sys/kernel/mm/transparent_hugepage/defrag"

[Install]
WantedBy=multi-user.target

reload systemd to take effect

bash 复制代码
sudo systemctl daemon-reload
sudo systemctl enable --now disable-thp.service
Remove File and Process Count Limitation
bash 复制代码
sudo nano /etc/security/limits.d/mongodb.conf

append this script to file end, press Ctrl+X Y Enter to save

bash 复制代码
mongod soft nproc 64000
mongod hard nproc 64000
mongod soft nofile 64000
mongod hard nofile 64000
Enable Swappiness for MongoDB
bash 复制代码
sudo nano /etc/sysctl.conf

append this script to file end, press Ctrl+X Y Enter to save

bash 复制代码
fs.file-max = 2097152
vm.max_map_count = 262144
vm.swappiness = 1

apply changes

bash 复制代码
sudo sysctl -p
Install MongoDB
bash 复制代码
sudo apt update
sudo apt install gnupg curl

add GPG key and repository for mongo db

bash 复制代码
curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | \
sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg \
--dearmor
bash 复制代码
echo "deb [ arch=amd64,arm64 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

install mongo db

bash 复制代码
sudo apt update
sudo apt install mongodb-org
Enable MongoDB Service
bash 复制代码
sudo systemctl daemon-reload
sudo systemctl enable --now mongod
sudo systemctl status mongod

press Ctrl+Z to exit status details

Create MongoDB Admin User
bash 复制代码
mongosh
bash 复制代码
disableTelemetry()
use admin
db.createUser({
  user: "root",
  pwd: passwordPrompt(),
  roles: [
    {
      role: "userAdminAnyDatabase",
      db: "admin"
    },
    {
      role: "readWriteAnyDatabase",
      db: "admin"
    }
  ]
})
bash 复制代码
quit()
Enable MongoDB Authentication
bash 复制代码
sudo nano /etc/mongod.conf

append this script to file end, press Ctrl+X Y Enter to save

when you want to reset admin user, you should disable this option, and restart mongod

bash 复制代码
security:
  authorization: enabled

reload mongo db service to take effect

bash 复制代码
sudo systemctl restart mongod

try a login with password

bash 复制代码
mongosh --port 27017 --authenticationDatabase "admin" -u "root" -p
Create a Normal Database
bash 复制代码
use user

create a new user for this normal db

bash 复制代码
db.createUser({
  user: "useradmin",
  pwd: passwordPrompt(),
  roles: [
    {
      role: "readWrite",
      db: "user"
    }
  ]
})
bash 复制代码
quit()

try a login with password

bash 复制代码
mongosh --port 27017 --authenticationDatabase "user" -u "useradmin" -p
Update User Roles
bash 复制代码
mongosh --port 27017 --authenticationDatabase "admin" -u "root" -p
bash 复制代码
use user
bash 复制代码
db.createUser({
  user: "root",
  pwd: passwordPrompt(),
  roles: []
})
bash 复制代码
db.grantRolesToUser("root", [{role:"readWrite", db:"user"}])
Insert Document
bash 复制代码
db.user.insertOne({
    id:"1",
    name:"MongoA"
})
Uninstall MongoDB
bash 复制代码
sudo apt purge mongodb-org
Configure MongoDB Connection in SpringBoot
properties 复制代码
spring.data.mongodb.host=localhost
spring.data.mongodb.port=27017
spring.data.mongodb.database=user
spring.data.mongodb.username=root
spring.data.mongodb.password=123456789
Preference Guidance

https://www.howtoforge.com/tutorial/install-mongodb-on-ubuntu

相关推荐
路弥行至15 小时前
从0°到180°,STM32玩转MG996R舵机
c语言·数据库·stm32·单片机·嵌入式硬件·mcu·mongodb
Yeats_Liao19 小时前
物联网平台中的MongoDB(一)服务模块设计与架构实现
物联网·mongodb·架构
麦兜*21 小时前
MongoDB 备份与恢复终极指南:mongodump 和 mongorestore 深度实战
java·数据库·spring boot·mongodb·spring
码界奇点1 天前
MongoDB vs MySQLNoSQL与SQL数据库的架构差异与选型指南
数据库·sql·mongodb·系统架构
麦兜*1 天前
MongoDB 常见错误解决方案:从连接失败到主从同步问题
java·数据库·spring boot·redis·mongodb·容器
清风6666662 天前
基于51单片机手机无线蓝牙APP控制风扇调速设计
单片机·mongodb·智能手机·毕业设计·51单片机·课程设计
麦兜*2 天前
MongoDB 6.0 新特性解读:时间序列集合与加密查询
数据库·spring boot·mongodb·spring·spring cloud·系统架构
程序员爱钓鱼2 天前
Go语言实战案例 — 工具开发篇:编写高可用日志收集脚本
后端·mongodb·go
少男的脸红藏不住心事3 天前
GD32入门到实战35--485实现OTA
数据库·mongodb·nosql
易白4 天前
MongoDB服务1053错误、1067错误处理
mongodb