티스토리 뷰
Node.js/Node.js 이슈
[mongoose] MongooseServerSelectionError: connect ECONNREFUSED ::1:27017 에러 해결
응애~ 개발자 2023. 3. 6. 01:53728x90
반응형
const mongoose = require('mongoose');
const connect = () => {
if (process.env.NODE_ENV !== 'production') {
mongoose.set('debug', true);
}
mongoose.connect('mongodb://id:pw@localhost:27017/admin', {
dbName: DB이름,
useNewUrlParser: true,
}, (error) => {
if (error) {
console.log('mongoDB Connect Fail', error);
} else {
console.log('mongoDB Connect Success');
}
});
};
원인
Node.js교과서 수업 들을때 몽고DB 연결할때 저 위같은 오류가 나오는 경우가 있다. 그 이유는 몽구스 6버전 부터는 ipv6로 읽어 오기 때문에 IPv6이면 0:0:0:0:0:0:0:1 또는 ::1로 읽어 온다.
해결 방법
실제 로컬에 몽고DB실행시킨는 로컬호스트는 IPv4 방식인 127.0.0.1:27017로 localhost → 127.0.0.1로 변경하면 끝이다.
const mongoose = require('mongoose');
const connect = () => {
if (process.env.NODE_ENV !== 'production') {
mongoose.set('debug', true);
}
mongoose.connect('mongodb://id:pw@127.0.0.1:27017/admin', {
dbName: DB이름,
useNewUrlParser: true,
}, (error) => {
if (error) {
console.log('mongoDB Connect Fail', error);
} else {
console.log('mongoDB Connect Success');
}
});
};
참조
Nodejs 교과서
https://www.mongodb.com/community/forums/t/mongooseserverselectionerror-connect-econnrefused-127-0-0-1-27017/123421/5
728x90
반응형
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 그리디
- 백준
- DP
- 누적합
- 배열
- 파이썬
- Python
- 자바
- LeetCode
- 동적 계획법
- java
- 조합
- 백트레킹
- 수학
- 동적계획법
- Programmerse
- BFS
- 문자열
- 넓이 우선 탐색
- JSCODE
- 재귀호출
- Greedy
- level2
- 구현
- 그래프
- spring-boot
- DFS
- 알고리즘
- 이론
- BaekJoon
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함