본문 바로가기
Programming/Database

postgres DATABASE URL FORMAT

by 하하호호 2021. 10. 24.
반응형

 

 

Backend application에서 DB를 연결하기 위해서는

DATABASE URL을 추가 설정해주어야 한다.

DATABASE URL의 FORMAT은 다음과 같다.

 

postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...;]
postgresql://user:password@localhost:5432/dbname;

 

1) 데이터베이스 종류 : postgresql

2) User ID : user

3) Password : password

4) DB host address : localhost

5) DB connect port : 5432

6) DB name : dbname

 

반응형

댓글