2008年8月25日 星期一

CentOS 5.0 中 PostgreSQL 8.3 的設定檔

CentOS 5.0 中 PostgreSQL 8.3 的設定檔

1. 修改 pg_hba.conf 設定檔
   
   # vim /var/lib/pgsql/data /pg_hba.conf

   # IPv4 local connections:
     host all all 127.0.0.1/32 ident sameuser
     host all all 192.168.0.1/24  password (純文字密碼,容易截聽)
     host all all 192.168.0.1/24  md5    (加密密碼,首選)


(記得先 cp 一個 bak,改時只加以#,vim用 yy 複製,p 貼上。)
(/var/lib/pgsql/data 是預設的目錄,沒事不要改。)

2. 修改 postgresql.conf 設定檔

    # vim /var/lib/pgsql/data /postgresql.conf
    
     # listen_addresses = 'localhost'
     listen_addresses = '*'
     port = 5432    (去掉前面的 # )

3.  以 ip (192.168.0.X )連入時要留意 iptables 的設定。

沒有留言: