Database20 psql: FATAL: Peer authentication failed for user taiga@ubuntu:~$ psql -U testUser -W testDB -h localhost psql: FATAL: Peer authentication failed for user 옵션에 -h localhost를 붙여준다. 2016. 6. 27. create database in postgresql #DB 생성create database testDB with encoding 'unicode' LC_COLLATE 'C' LC_CTYPE 'C' template template0; #DB Owner 변경alter database testDB owner to testUser; 2016. 6. 27. postgresql user list taiga=# \du List of roles Role name | Attributes | Member of-----------+------------------------------------------------+----------- postgres | Superuser, Create role, Create DB, Replication | {} taiga | Superuser, Create role, Create DB | {} 2016. 6. 27. PostgreSQL - Ubuntu Basic 설치 가정 Ubuntu에서 PostgreSQL 기본 설치 및 동작 Ubuntu Server를 설치할 때 여러 패키지를 설치할지 유무를 물어본다 보기에 PostgreSQL도 있으니 Check를 하면 관련 라이브러리와 함께 PostgreSQL이 설치된다.$ qa@qa-ubuntu:~$ sudo -i -u postgres위의 명령어를 실행하면 postgres 계정으로 접속이 된다.$ postgres@qa-ubuntu:~$ psqlpsql (9.3.4)Type "help" for help.postgres=# 위의 명령어를 실행하면 postgresql DB로 접속이 된다. DB 밖으로 빠져나가고 싶을 때에는 다음의 명령어를 실행하면 된다. postgres=# \q PostgreSQL User 생성 - yogiyo라는 Use.. 2014. 9. 2. 이전 1 2 3 4 5 다음