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/
'About Data > DB' 카테고리의 다른 글
[MacOS][Mysql] How To install Mysql in MacOS (Apple silicon M chip) (0) | 2023.09.07 |
---|---|
[MacOS][MariaDB] How To install MariaDB in MacOS (Apple silicon M chip) (0) | 2023.09.06 |
[Mac M2][MongoDB] Compass 설치하기 (MongoDB GUI 설치하기) (0) | 2023.09.04 |
[SOLVED][MongoDB] MongoDB 설치 완료 직후 많이 발생하는 zsh: command not found: mongo 해결 방법 (0) | 2023.09.04 |
[Windows10] VisualStudioCode에서 drawio 파일 열기 (1) | 2021.04.02 |