macOS) MongoDB 설치하기

작성: 2021.03.22

수정: 2021.03.22

읽는시간: 00 분

IT ⁄ Computer/Mac

반응형

 

 

docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/

 

Install MongoDB Community Edition on macOS — MongoDB Manual

 

docs.mongodb.com

 

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

 

What does brew tap mean?

Sometimes I see articles saying command of brew tap before brew install something. I am wondering what does tap mean? And why must I run tap before install?

stackoverflow.com

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  설치는 아래 링크를 따라하시면 됩니다.

shanepark.tistory.com/52

 

macOS) robo-3t 설치하기

robomongo.org/download Robomongo Robo 3T: the hobbyist GUI Robo 3T 1.4 brings support for MongoDB 4.2, and a mongo shell upgrade from 4.0 to 4.2, with the ability to manually specify visible databas..

shanepark.tistory.com

 

반응형