본문 바로가기
PostgreSQL postgresql.conf 파일 설정하기 postgresql.conf 파일은 해당 데이터베이스의 환경설정 파일이다. 오라클을 접해본 사람이라면 sqlnet.ora 파일과 유사하다고 이해하면 된다. pg_hba.conf 와 마찬가지로 '#'은 주석문이다. postgresql.conf의 내용은 생각보다 많고 변경 시 유의해야 할 것들이 많다. 옵션들은 DB가 설치된 머신 또는 환경에 따라 설정을 달리 해야 할 필요가 있으므로, 이 포스팅에서는 기본적으로 수정해야 할것들만 설명하도록 하겠다. 차후 PostgreSQL ErrorReport를 포스팅하고자 하는데, 그때 postgresql.conf의 내용을 상황별로 정리해 보기로 한다. listen_addresses = 'localhost' 서버를 초기화하면 기본적으로 'localhost'로 설정된다. .. 2020. 6. 17.
PostgreSQL pg_hba.conf 설정하기 지난포스팅에서 언급되었던 pg_hba.conf 파일 설정에 대해 알아보자. pg_hba.conf 는 인증에 관련된 설정 파일이다. 해당파일은 initDB.exe 를 실행시 Data폴더 안에 생성된다. # Put your actual configuration here # ---------------------------------- # # If you want to allow non-local connections, you need to add more # ""host"" records. In that case you will also need to make PostgreSQL # listen on a non-local interface via the listen_addresses # configurati.. 2020. 6. 15.
Window에 PostgreSQL 설치 PostgreSQL을 설치해 보도록 하자. (참고로 PostgreSQL의 발음은 '포스트그레스큐엘' 이다. 이하 PGsql 혹은 PG라고 표기할 수 있다.) 먼저 홈페이지에서 원하는 버젼의 DB설치파일을 다운받는다 PostgreSQL 설치파일 다운로드www.postgresql.org/download/ PostgreSQL: DownloadsDownloads PostgreSQL Core Distribution The core of the PostgreSQL object-relational database management system is available in several source and binary formats. Binary packages Pre-built binary packages are .. 2020. 6. 14.