Etc

게시글 보기
작성자 유건데이타 등록일 2024-08-07
제목 [postgres] 접속방법
# 서버의 5432 port로 Postgresql 접속을 시도. Target DB는 현재 사용자 이름과 동일한 'scott'
$ psql

# 서버의 5432 port로 Postgresql 접속을 시도. 접속 User는 'postgres'이며 Target DB는 접속 User와 동일한 'postgres'
$ psql -U postgres

# 192.168.0.10의 5432 port로 Postgresql 접속을 시도. 접속 User는 'scott'이며 Target DB는 현재 사용자 이름과 동일한 'scott'
$ psql -h 192.168.0.10

# 192.168.0.10의 5432 port로 Postgresql 접속을 시도. 접속 User는 'postgres'이며 Target DB는 접속 User와 동일한 'scott'
$ psql -h 192.168.0.10 -U posgres

# 192.168.0.10의 5432 port로 Postgresql 접속을 시도. 접속 User는 'scott'이며 Target DB는 'targetdb명'
$ psql -h 192.168.0.10 -U scott targetdb명
$ psql -h 192.168.0.10 -U scott -d targetdb명

# 192.168.0.10의 9000 port로 Postgresql 접속을 시도. 접속 User는 'scott'이며 Target DB는 'targetdb명'
$ psql -h 192.168.0.10 -p 9000 -U scott targetdb명
$ psql -h 192.168.0.10 -p 9000 -U scott -d targetdb명
Comment
등록된 코멘트가 없습니다.