티스토리 뷰

Database/PostgreSQL

Postgresql 정리

엘키 2016. 2. 8. 23:52

한눈에 살펴보는 PostgreSQL

장점

pgadmin [management tool]

Function

Syntax

생성/ 삭제

프로파일링

쿼리 측정 및 통계

백업 복구

외부 접속

  • 인증 권한 - vi /var/lib/pgsql/data/pg_hba.conf
     local   all              all                                              trust
     host   all              all              0.0.0.0/0               trust
     
  • listen 주소 수정 - vi /var/lib/pgsql/data/postgresql.conf
    listen_addresses = '*'                  # what IP address(es) to listen on;
    port   5432
    max_connections = 100
     
  • 위 두 정보를 수정한 뒤, 반드시 postgresql 서비스를 재시작 해주어야 한다.
     
  • 참고
    https://www.digitalocean.com/community/tutorials/how-to-use-postgresql-with-your-ruby-on-rails-application-on-centos-7
    http://acet.pe.kr/246


'Database > PostgreSQL' 카테고리의 다른 글

db 덤프 생성 및 복원  (0) 2016.02.11
댓글