참조 사이트 http://zetawiki.com/wiki/%EC%9A%B0%EB%B6%84%ED%88%AC_PostgreSQL_%EC%84%A4%EC%B9%98 1. 설치 확인 aptitude show postgresql | grep State State: not installed 2. 설치 apt-get install postgresql 3. 확인 dpkg -l | grep postgres 4. 계정 확인 cat /etc/passwd | grep postgres postgres:x:110:120:PostgreSQL administrator,,,:/var/lib/postgresql:/bin/bash 네트웍 상태 확인 netstat -tnlp | grep postgres 패스워드 설정 sudo -u postgres psql template1 could not change directory to "/root": Permission denied psql (9.3.11) Type "help" for help. template1=# template1=# ALTER USER postgres with encrypted password 'P@ssw0rd'; ALTER ROLE template1=# \q 접속 모든 대역 허용 vi /etc/postgresql/9.3/main/postgresql.conf listen_addresses = '*' vi /etc/postgresql/9.3/main/pg_hba.conf host all all 0.0.0.0/0 md5 접속 테스트 psql -h 135.79.246.80 -U postgres template1 ...