728x90
MongoDB는
다양한 플랫폼에서 사용할 수 있는 NoSQL 타입의 데이터베이스 프로그램으로, JSON과 비슷한 형태로 자료를 정리한다.
💻 터미널 창에 아래 코드 한 줄씩 입력 후 엔터
brew tap mongodb/brew
brew install mongodb-community
이렇게 설치하려고 하니 아래와 같은 에러가 발생했다.
⛔️ Error: Your Command Line Tools are too outdated.
검색해보니 Homebrew 사용시 생길 수 있는 error였다.
출처: https://gentlesark.tistory.com/98

⛔️ 해결방안
1. CLT 삭제
sudo rm -rf /Library/Developer/CommandLineTools
2. xcode-select 설치
sudo xcode-select --install
3. xcode 앱 선택
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
⛔️ MYSQL 업그레이드 하라는 문구가 떴다.

brew services restart mysql
💻 설치완료
몽고 DB가 설치되면 아래와 같은 문구가 나온다!

728x90