[PostgreSQL] 설치

cykim·2023년 10월 28일
0

DataBase

목록 보기
1/2
post-thumbnail

1. 공식 홈페이지 이동 후 다운로드

https://www.postgresql.org/

2. 설치 확인

SQL Shell (psql) 접속
Server, Database, Port, Username의 경우 Enter 클릭 시 Default 값으로 설정
postgres 사용자의 암호 에는 다운로드 시 지정한 암호 입력

select version(); -- 버전 확인

\l -- 데이터베이스 목록 확인
\c db명 -- db명에 해당하는 데이터베이스 접속
\d -- 테이블 목록 확인

3. pgAdmin 4 접속

C:\Program Files\PostgreSQL\16\pgAdmin 4\runtime
해당 경로에 위치한 pgAdmin4.exe 실행

0개의 댓글