MongoDB 설정
MongoDB2016. 4. 18. 15:20
data path 설정Log path 설정 mongod.cfg 파일 생성 - ip, port, dbpath, logpath ##Which IP address(es) mongod should bind to.bind_ip = 192.168.0.15 ##Which port mongod should bind to.port = 20148 ##I set this to true, so that only critical events and errors are logged.quiet = true ##store data heredbpath=C:\MongoDB\Data\ ( 해당 Data 경로 폴더 명칭은 자유 ) ##The path to the log file to which mongod should write its l..