본문 바로가기
AI

MongoDB 설치하기 (windows)

by bryan.oh 2020. 1. 9.
반응형

MongoDB

  • Document 지향 DB

  • NoSQL

  • node.js와 많이들 같이 사용하심.

  • Linux, Windows 다 사용가능

 

- 다운로드 commuity server

https://www.mongodb.com/download-center/community

 

Download Center: Community Server

Download MongoDB Community Server, the most popular non-relational database built to address the needs of modern applications.

www.mongodb.com

아래와 같이 선택해서 다운로드 합니다.

다운받은 msi 파일을 실행하여 설치합니다.

기본 경로로 해도되지만 Program files 와 같이 공백이있는 경로는 혹~~~시모를 오류를 대비해 뺍니다.

 

visualize tool 은 다른것을 쓸거라서 Compass 설치는 안합니다. 체크해제!

 

설치가 완료되었으면 cmd 에서 실행할 수 있게 환경변수를 편집합니다.

 

 

기본 설치 경로는 c:\program files\MongoDB\Server\4.2\ 입니다. 여기에 bin 을 붙혀서 추가합니다.

c:\program files\MongoDB\Server\4.2\bin

 

cmd 를 실행하고 mongod 를 치면 c:\data\db 라는 폴더가 없다고 오류가 발생합니다.
C:\Users>mkdir c:\data\db 로 폴더를 생성합니다.

(또는 원하는 경로로 바꾸고 싶을때
C:\Users>mongod --dbpath C:\mongoDB\data\db 이렇게 변경합니다.)

다시 mongod 를 입력하면 실행됩니다.

웹브라우저를 열고 localhost:27017 로 가면

It looks like you are trying to access MongoDB over HTTP on the native driver port.

요런 메시지가 나옵니다.

이럼 제대로 실행된겁니다.

visualize tool 을 사용하여 Collection( =: table) 등을 생성할 수 있습니다.

 

728x90
반응형

댓글