반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 디자인패턴
- 헤드퍼스트전략패턴
- file not found Error
- 시스템설계면접팁
- formik react-query submitting not working
- 가상면접2장
- git squash
- cypressBDD
- s3이미지다운로드됨
- 리팩터링2판테스트
- 시스템설계면접
- 리액트구글애널리틱스
- formik submitting not working
- awss3
- 가상면접으로대규모시스템
- react
- Git commit 합치기
- git commit 협업
- 시스템설계
- gitsquash
- cypress React
- 가상면접3장
- git commit merge
- react-ga
- 시스템설계방법
- 전략패턴
- 테스트코드책
- 시스템설계면접예시
- FirebaseAnalytics
- 리팩토링2판4장
Archives
- Today
- Total
mingg IT
[MongoDB]MongooseServerSelectionError: connect ECONNREFUSED ::1:27017 에러 해결 본문
BackEnd
[MongoDB]MongooseServerSelectionError: connect ECONNREFUSED ::1:27017 에러 해결
mingg123 2022. 2. 5. 20:19require('dotenv').config();
const Koa = require('koa');
const Router = require('koa-router');
const bodyParser = require('koa-bodyparser');
const mongoose = require('mongoose');
const { PORT, MONGO_URI } = process.env;
mongoose
.connect(MONGO_URI, { useNewUrlParser: true })
.then(() => {
console.log('Connected to MongoDB');
})
.catch(e => {
console.error(e);
});
Node.js에서 mongoose를 이용하여 MongoDB에 연결하려 했는데 저런 에러가 발생했다.
dotenv를 이용해서 환경변수를 관리하고 있었다.
.env
PORT=4002
MONGO_URI=mongodb://localhost:27017/blog
해결법은 아주 간단했다.
.env
PORT=4002
MONGO_URI=mongodb://127.0.0.1:27017/blog
localhost -> 127.0.0.1 로 바꾸어 주었다.
정상적으로 작동했다.
'BackEnd' 카테고리의 다른 글
[Spring Security] 401 Cors (403) 뽀개기 (0) | 2022.12.28 |
---|---|
[Spring] Swagger-UI 3.0.0 not working 해결하기 (0) | 2022.02.07 |
[Spring] AOP 개념 정리 (ver 2022년) (0) | 2021.12.29 |
[Jpa] @transactional 격리수준과 전파속성 (0) | 2021.12.26 |
[JPA] 영속성 컨텍스트 와 EntityManager (0) | 2021.12.24 |
Comments