MongoDB

    Windows에서 Linux로 MongoDB 마이그레이션 하기

    소개MongoDB를 Windows에서 Linux 환경으로 마이그레이션하는 전체 과정을 상세히 알아보겠습니다. MongoDB 8.0.3 버전을 기준으로 설명하겠습니다.Linux에 MongoDB 설치하기Ubuntu/Debian 환경# 1. MongoDB GPG 키 가져오기sudo apt-get updatesudo apt-get install gnupg curlcurl -fsSL https://pgp.mongodb.com/server-8.0.asc | \ sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg \ --dearmor# 2. MongoDB 리포지토리 추가echo "deb [ arch=amd64,arm64 signed-by=/usr/share/key..

    MongoDB 쿼리 작성법과 최적화

    소개MongoDB는 강력한 쿼리 기능을 제공하는 NoSQL 데이터베이스입니다. 이번 글에서는 MongoDB의 다양한 쿼리 작성법과 실전 활용 방법을 자세히 알아보겠습니다.기본 CRUD 쿼리데이터 조회 (Read)// 기본 조회db.users.find() // 모든 사용자 조회db.users.findOne() // 첫 번째 사용자 조회// 조건 조회db.users.find({ age: 30 }) // 나이가 30인 사용자db.users.find({ name: "John" }) // 이름이 John인 사용자// 특정 필드만 조회db.users.find( { age: 30 }, { name: 1, email: 1, _id: 0 } // name과 email만 조회 (_id 제외))데이터 생..