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
- JavaScript
- cookie
- 게임
- GIT
- dfs
- Sequelize
- 정렬
- flask
- nodejs
- TypeScript
- typeORM
- OCR
- nestjs
- Bull
- Nest.js
- AWS
- MySQL
- game
- class
- Express
- Python
- jest
- MongoDB
- Queue
- 자료구조
- react
- mongoose
- Dinosaur
- 공룡게임
Archives
- Today
- Total
포시코딩
[Mac] Homebrew를 통해 MongoDB 설치하기 본문
728x90
1. Homebrew 설치
터미널을 실행한 후 아래 코드를 통해 homebrew를 설치
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
에러해결법
위 코드를 그대로 입력했는데 이런 에러가 뜬다면 여기서 안내하는 방법을 그대로 따라해준다.
git -C /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core fetch --unshallow
(저장소 위치에 따라 위 코드는 달라질 수 있다.)
unshallow 완료가 되면 다시 맨 위에서 안내한 코드를 입력한다.
homebrew 설치 완료
2. MongoDB 설치
brew tap mongodb/brew
brew install mongodb-community
한줄씩 실행
3. MongoDB 실행
brew services start mongodb-community
4. 실행 확인
http://localhost:27017로 접속 시 아래와 같은 화면이 나온다면 잘 된 것!
728x90
'MongoDB' 카테고리의 다른 글
[Mongoose] Schema 세팅 시 createdAt, updatedAt 자동 설정 (작성 시간, 수정 시간 자동 설정) (0) | 2022.12.14 |
---|---|
Mongoose 소개 및 Express에서의 사용법 (0) | 2022.12.13 |
[Mongoose] exec()의 역할 - 작성중 (0) | 2022.12.12 |
[Mongoose] Schema.virtual을 통해 ObjectId(_id) 다루기 (0) | 2022.12.12 |
[Mongoose] Object Array 내 데이터 변경 (update values in array of objects) (0) | 2022.11.28 |