Inflearn brand logo image

Inflearn Community Q&A

mhlee3262's profile image
mhlee3262

asked

Learn express with AWS in one day

PostgreSQL and AWS RDS Integration

postgresql connect() 문제

Resolved

Written on

·

100

1

강의내용에 추가내용으로 환경설정 업데이트가 되어야할것 같습니다....

 

환경설정으로 시간을 허비하는군요.

 

연결 관련으로

const pool = new Pool({

host: "",

user: "",

port: ,

password: "",

});

ssl 인증서 허용 옵션을 풀어야 연결이 되었습니다.

 

const pool = new Pool({

host: "",

user: "",

port: ,

password: "",

ssl: {

rejectUnauthorized: false,

},

});

 

node.jspostgresqlmongodbexpress

Answer 1

0

yangdongjun님의 프로필 이미지
yangdongjun
Instructor

codesandbox 가 계정이 어떻게 연결되어있냐에 따라서 조금 다르기도합니다.
보내주신 환경은 바로 추가하겠습니다.

mhlee3262's profile image
mhlee3262

asked

Ask a question