DB

PostgreSql pgAdmin 서버로 연결해보기

kimc 2022. 9. 21. 22:56
반응형

```

PostgreSql pgAdmin 서버로 연결해보기

```

이번 글을 통해 배워갈 내용

  1. PostgreSql pgAdmin 서버로 연결해보기

사전 작업

https://codemasterkimc.tistory.com/532

 

윈도우에 PostgreSql 설치하기

``` 윈도우에 PostgreSql 설치하기 ``` 이번 글을 통해 배워갈 내용 PostgreSQL Window에 설치하는 방법 1. PostgreSQL 다운로드 https://www.postgresql.org/download/windows/ PostgreSQL: Windows installer..

codemasterkimc.tistory.com

 

1.

pgAdmin 실행

 

(마스터 비밀번호 입력을 하라고 하는 경우 입력해주시고)

 

2.

마우스 오른쪽 클릭으로 서버 생성

3.

이름 입력

4.

host 명과

비밀번호 입력

그리고 Save

5.

새로 생성한 디비를 누르고

상단에 Query Tool 아이콘을 누른 다음

SELECT VERSION();으로 현재 버전 확인해줍니다.

 

 


https://www.postgresql.org/docs/current/tutorial.html

 

Part I. Tutorial

Part I. Tutorial Welcome to the PostgreSQL Tutorial. The following few chapters are intended to give a simple introduction to PostgreSQL, relational …

www.postgresql.org


 

 

반응형