써먹는 웹개발
[Node] 'MongoError: bad auth : Authentication failed' 에러 해결방법 본문
Server/Node.js
[Node] 'MongoError: bad auth : Authentication failed' 에러 해결방법
kmhan 2021. 4. 25. 13:51728x90
반응형
node.js에서 MongoDB 접속하다가 나타난 에러 메시지와 해결방법이다.
1. 에러 메시지
MongoError: bad auth : Authentication failed |
2. 원인 : 따옴표를 다른 걸로 작성함
참고 소스 `mongodb+srv://dbId:${dbConfig.pw}@first-project.ot5he.mongodb.net/${dbConfig.name}?retryWrites=true&w=majority`, { useNewUrlParser: true, useUnifiedTopology: true, useFindAndModify: false } |
내가 작성한 소스 'mongodb+srv://dbId:${dbConfig.pw}@first-project.ot5he.mongodb.net/${dbConfig.name}?retryWrites=true&w=majority', { useNewUrlParser: true, useUnifiedTopology: true, useFindAndModify: false } |
3. 해결
- '를 `(숫자 1옆에 ~버튼) 으로 변경함
728x90
반응형
'Server > Node.js' 카테고리의 다른 글
[Node] 인터페이스를 객체 생성하여 사용하기 (0) | 2023.01.30 |
---|---|
[Node] 에러 메시지 별 해결한 방법 (오타가 원인) (0) | 2023.01.26 |
[Node] 에러메시지 - npm ERR! Unexpected end of JSON input while parsing near '...c...' (0) | 2021.04.23 |
[Node] ejs란? (0) | 2021.04.22 |
[Node] 이미지 업로드 하는 방법 : multer (0) | 2021.04.22 |
Comments