PostgreSQL 설치 2. DB 구성 2.1. 관리자 비밀번호 설정 [postgres@www:/home/postgres]$ psql -dpostgres Enter new password: [암호 입력] Enter it agin: [암호 재입력] 2.2. postgresql.conf 파일 변경 [postgres@www:/home/postgres]$ vi /home/postgres/pgsql/data/postgresql.conf #listen_addresses = 'localhost' → listen_addresses = '*' 로 변경 2.3. pg_hba.conf 파일 변경 [postgres@www:/home/postgres]$ vi /home/postgres/pgsql/data..