About Data/DB
[MongoDB 7] Mac에서 homebrew로 mongodb 7 설치 방법
Tradgineer
2023. 9. 6. 11:25
1. homebrew를 통해 mongodb 설치
brew tap mongodb/brew
brew update
brew install mongodb-community@7.0
2. 설치 후 mongodb 실행
brew services start mongodb/brew/mongodb-community
brew services list
Status : started 확인
3. mongodb 정상 작동 확인하기
http://localhost:27017/
아래와 같은 화면이 출력될 경우, 정상적으로 작동하는 상태입니다.
It looks like you are trying to access MongoDB over HTTP on the native driver port.
4. mongodb 실행 방법
mongo
- 만약 실행되지 않고 오류가 발생한다면 아래 글을 참조합니다.
https://growingsaja.tistory.com/968
5. 간단한 쿼리 날려보기
show dbs;
6. MongoDB GUI 설치하기
https://growingsaja.tistory.com/969
7. 자주 사용하는 기본 쿼리 정리
https://growingsaja.tistory.com/970
5. 참조 mongodb 공식 문서
https://www.mongodb.com/docs/manual/tutorial/install-mongodb-on-os-x/