Ubuntu 9.0.4,PostgreSQL8.3でリモートからDBへの接続を許可するための設定手順です。編集が必要な箇所は以下の2つ。 /etc/postgresql/8.3/main/postgresql.conf /etc/postgresql/8.3/main/pg_hda.conf 1.postgresql.conf の編集 「/etc/postgresql/8.3/main/postgresql.conf 」の「listen_addresses」がローカルホストのみになっているので、編集します。 #listen_addresses='localhost' listen_addresses='*' 2.pg_hda.confの編集 「/etc/postgresql/8.3/main/pg_hda.conf」に接続を許可するクライアントの情報を追加します。 host all al