[MongoDB] Install (MacOS M1)

유동균·2023년 1월 27일
1

MongoDB

목록 보기
3/12
post-thumbnail

MongoDB 설치하기

링크 접속 - Install MongoDB Community Edition on macOS

1. Homebrew 설치

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  • 터미널에 명령어 붙여넣기

2. tap mongodb

brew tap mongodb/brew
  • 터미널에 명령어 붙여넣기

⚠️ M1칩 Mac에서 Homebrew 에러

Designdepot | Better Life

brew tap mongodb/brew
  • Homebrew 설치 후 위의 명령어를 입력시
zsh: command not found: brew
  • 이런 에러가 발생한다면
eval $(/opt/homebrew/bin/brew shellenv)
  • 위 명령어를 입력하고 실행하자

  • 터미널을 켤 때마다 homebrew가 자동으로 실행되게 하고 싶다면

vi ~/.zshrc
  • 위 명령어를 입력해서 vim 에디터 실행
i
  • i를 눌러서 <insert>모드 진입
eval $(/opt/homebrew/bin/brew shellenv)
  • 위 명령어를 입력 후에 ESC를 누르고 :wq를 입력후 엔터

3. Install MongoDB

brew install mongodb-community@6.0

4. Run MongoDB

  • 백그라운드에서 실행됨
brew services start mongodb-community@6.0

5. Stop MongoDB

brew services stop mongodb-community@6.0

6. Start MongoDB

brew services start mongodb-community@6.0
  • 위 명령어를 입력 후(백그라운드에서 실행되고 있어야함) 새 터미널 창을 열어서
mongo
  • 위 명령어를 입력해서 시작

⚠️ zsh: command not found: mongo

mongo
  • 위 명령어를 입력 후 에러가 난다면
$ brew install mongodb-community-shell
  • 위 명령어를 통해 shell을 입력 후 다시 실행해보자

0개의 댓글