Published 2022. 8. 19. 10:29
const mongoose = require('mongoose');
mongoose
.connect('mongodb+srv://inadang:<비번>@inadang.layhnvt.mongodb.net/?retryWrites=true&w=majority', {
useNewUrlParser: true, useUnifiedTopology: true, useCreateIndex: true, useFindAndModify: false
})
.then(() => console.log('MongoDB Connected...'))
.catch(err => console.log(err));
MongoParseError: options usecreateindex, usefindandmodify are not supported
몽고디비 6 이상부터는 use...를 지원하지않는다. 그래서 {}안에 모두 지워줬다.
지우고나니
MongoServerError: bad auth : Authentication failed.
에러가 떴는데 이건 비밀번호 <>를 지우지 않아서 생긴 실수.
const mongoose = require('mongoose');
mongoose
.connect('mongodb+srv://inadang:비번&@inadang.layhnvt.mongodb.net/?retryWrites=true&w=majority', {})
.then(() => console.log('MongoDB Connected...'))
.catch(err => console.log(err));
예쁘게 연결됐다!
반응형
'개발 > Error note' 카테고리의 다른 글
[VSCode error] 새 프로젝트에서 프로젝트가 작동하지 않을 때 (0) | 2022.09.26 |
---|---|
[Tomcat error] Tomcat v8.5 Server at localhost is already in use (0) | 2022.08.20 |
[Vue error] 프로젝트 생성시 권한오류 (0) | 2022.08.18 |
[VSCode Error] 보안 오류: (:) [], PSSecurityException (0) | 2022.08.17 |
[Tomcat error] Could not load the Tomcat server configuration at ...오류 발생시 대처법 (0) | 2022.08.16 |