docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/
MongoDB 공식 사이트의 가이드를 참고하며 설치했습니다.
설명이 자세히 쓰여 있으니 위 페이지를 참고하며 설치하는 것을 추천합니다.
일단 설치 가능한 mongodb를 brew 에서 검색해 보았습니다.
brew search mongodb
이번에는 tap을 해보도록 하겠습니다. Brew tap명령은 설치 가능한 software를 확장시켜 줍니다.
* The tap command allows Homebrew to tap into another repository of formulae. Once you've done this you've expanded your options of installable software.
stackoverflow.com/questions/34408147/what-does-brew-tap-mean
brew tap mongodb/brew
위와 같이 tap 명령을 실행 한 뒤에, 다시 search 를 해보면
설치 가능한 mongodb가 훨씬 많아졌습니다. 최신인 4.4 버전을 설치해보겠습니다.
brew install mongodb-community@4.4
금방 알아서 잘 설치를 해줍니다. 아래 명령어를 입력해서 잘 나오면 설치가 잘 된 것입니다.
mongo -version
각각 서버를 실행하고 종료하는 명령어는 다음과 같습니다.
brew services start mongodb-community@4.4
brew services stop mongodb-community@4.4
설치는 이상으로 완료되었습니다.
이제 mongoDB 를 실행해볼건데요,
그냥 mongo를 실행해보면 Connection refused가 됩니다. 서버를 실행하지 않아서 그렇습니다.
아래 명령어로 서버를 실행한 뒤에, 다시 mongo 를 쳐보면
brew services start mongodb-community@4.4
정상적으로 실행이 됩니다 !
GUI 환경에서 관리하고 싶다면,
Studio 3T
Robo 3T
humongous.io 중 하나를 설치하면 됩니다.
Robo3T 설치는 아래 링크를 따라하시면 됩니다.
'IT ⁄ Computer > Mac' 카테고리의 다른 글
oh-my-zsh 설치하기 (0) | 2021.03.23 |
---|---|
macOS) robo-3t 설치하기 (0) | 2021.03.22 |
vscode 터미널 code 명령어 등록하기 (0) | 2021.03.21 |
Mac OS 사파리, 이클립스, 스크린샷 등 간단 단축키 목록 (1) | 2021.03.17 |
Mac 에 brew 설치하기 및 warning: /opt/homebrew/bin is not in your path. 에러 해결 (4) | 2021.03.16 |