"리눅스 PostgreSQL 클라이언트 psql"의 두 판 사이의 차이

4번째 줄: 4번째 줄:
*PostgreSQL 터미널
*PostgreSQL 터미널


==실행예시==
<source lang='cli'>
<source lang='cli'>
[root@zetawiki ~]# psql
[root@zetawiki ~]# psql
10번째 줄: 11번째 줄:
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
</source>
</source>
:→ 서버는 설치하지 않고 클라이언트만 설치한 경우<ref>옵션을 주지 않으면(접속대상서버를 지정하지 않으면) local socket을 참조함</ref>


==원격 서버 접속==
==원격 서버 접속==

2015년 9월 22일 (화) 10:49 판

1 개요

리눅스 psql
/usr/bin/psql
  • PostgreSQL 터미널

2 실행예시

[root@zetawiki ~]# psql
psql: could not connect to server: No such file or directory
	Is the server running locally and accepting
	connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
→ 서버는 설치하지 않고 클라이언트만 설치한 경우[1]

3 원격 서버 접속

psql -h 서버주소 -U 아이디 데이터베이스명
[root@zetawiki ~]# psql -h 135.79.246.80 -U testuser mydb
Password for user testuser:
psql (8.4.20, server 9.1.1)
WARNING: psql version 8.4, server version 9.1.
         Some psql features might not work.
Type "help" for help.
mydb=>
mydb=> \q
[root@zetawiki ~]#

4 같이 보기

  1. 옵션을 주지 않으면(접속대상서버를 지정하지 않으면) local socket을 참조함
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}