Ubuntu에서 PostgreSQL 기본 설치 및 동작
Ubuntu Server를 설치할 때 여러 패키지를 설치할지 유무를 물어본다
보기에 PostgreSQL도 있으니 Check를 하면 관련 라이브러리와 함께 PostgreSQL이 설치된다.
$ qa@qa-ubuntu:~$ sudo -i -u postgres |
위의 명령어를 실행하면 postgres 계정으로 접속이 된다.
$ postgres@qa-ubuntu:~$ psql psql (9.3.4) Type "help" for help. postgres=# |
위의 명령어를 실행하면 postgresql DB로 접속이 된다. DB 밖으로 빠져나가고 싶을 때에는 다음의 명령어를 실행하면 된다.
postgres=# \q |
PostgreSQL User 생성
- yogiyo라는 User를 생성한다.
postgres@qa-ubuntu:~$ createuser yogiyo --interactive Shall the new role be a superuser? (y/n) y |
PostgreSQL Database 생성
- yogiyodb라는 DB를 생성한다.
postgres@qa-ubuntu:~$ createdb yogiyodb |
Trouble Shooting
postgres=# \q could not save history to file "/var/lib/postgresql/.psql_history": No such file or directory |
- 아직까진 특별한 Issue가 없다고 그냥 넘어가라고 함
참고
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-ubuntu-14-04
'Database > PostgreSQL' 카테고리의 다른 글
psql: FATAL: Peer authentication failed for user (0) | 2016.06.27 |
---|---|
create database in postgresql (0) | 2016.06.27 |
postgresql user list (0) | 2016.06.27 |
PostgreSQL Table 전체 조회 (0) | 2013.03.25 |
PostgreSQL (0) | 2013.01.29 |
댓글