Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- TypeScript
- 자료구조
- JavaScript
- game
- class
- jest
- Python
- Dinosaur
- Nest.js
- Queue
- dfs
- Bull
- AWS
- 정렬
- Express
- nestjs
- flask
- MySQL
- nodejs
- typeORM
- mongoose
- 게임
- MongoDB
- react
- cookie
- 공룡게임
- OCR
- GIT
- Sequelize
Archives
- Today
- Total
포시코딩
맥북 Intel m1에서 local MongoDB 설치 본문
728x90
이 글은 오래된 글이다.
더 상세한 내용으로 다시 포스팅한 글을 위 링크를 통해 참고!
---------------------------------------------------------------------------
https://choboit.tistory.com/95
1. brew를 통해 설치
brew tap mongodb/brew
brew update
brew install mongodb-community
2. background process로 mongodb 실행 및 중지
(Intel Chip)
mongod —config /usr/local/etc/mongod.conf —fork
(Apple Chip)
mongod —config /opt/homebrew/etc/mongod.conf —fork
(중지)
mongosh를 통해 mongod와 연결 후에 shutdown 명령어를 입력
db.shutdownServer()
3. 실행 확인
ps aux | grep -v grep | grep mongod
4. 로그파일 확인
(Intep Chip)
/usr/local/var/log/mongodb/mongo.log
(Apple Chip)
/opt/homebrew/var/log/mongodb/mongo.log
5. 실행
mongodb를 실행시킨 후 (background든 어떻게든)
-> mongosh
728x90
'MongoDB' 카테고리의 다른 글
[Mongoose] Object Array 내 데이터 변경 (update values in array of objects) (0) | 2022.11.28 |
---|---|
[Mongoose] Model ObjectId Type 사용하기 (0) | 2022.11.14 |
MongoDB Atlas에서 Local MongoDB로 데이터 옮기기 (Migrating from MongoDB Atlas to a local MongoDB) (0) | 2022.10.04 |
MongoDB Atlas 데이터 Compass로 보기 (0) | 2022.10.04 |
Local 설치 (0) | 2022.10.04 |