logo
Published on

RailsのpostgreSQLにローカルネットワーク(LAN/外部)から接続

Authors

Ruby on RailsのpostgreSQLデータベースにローカルネットワーク(LAN/外部)から接続するのに時間がかかったので少し紹介します。

database.yml

development:
adapter: postgresql
encoding: unicode
database: englishtool_development
pool: 5
username: englishtool
password: password1
host: 192.168.99.101

test:
adapter: postgresql
encoding: unicode
database: englishtool_test
pool: 5
username: englishtool
password: password1
host: 192.168.99.101

エラーが……

$ rake db:setup
could not connect to server: Connection refused
Is the server running on host "192.168.99.101" and accepting
TCP/IP connections on port 5432?
Couldn't create database for {"adapter"=>"postgresql", "encoding"=>"unicode", "database"=>"englishtool_development", "pool"=>5, "username"=>"englishtool", "password"=>"password1", "host"=>"192.168.99.101"}
rake aborted!
PG::ConnectionBad: could not connect to server: Connection refused
Is the server running on host "192.168.99.101" and accepting
TCP/IP connections on port 5432?

Tasks: TOP => db:setup => db:schema:load_if_ruby => db:create

解決方法

(ローカルのlocalhostでは正常に接続できる状態であることを前提しとしています。)

  1. postgresq.confファイルの修正

PostgreSQLは、デフォルトでは自ホストからの接続しか許可していない。

sudo vim /etc/postgresql/10/main/postgresql.conf
# 追記
listen_addresses = '*'
  1. 接続できるクライアントを設定する
sudo vim /etc/postgresql/10/main/pg_hba.conf
# IPv4 local connections:
host    all             all             127.0.0.1/32            md5

+ # local network
+ # host    all             all             192.168.0.0/16          md5
+ host    all             all             0.0.0.0/0               trust

全IP許可認証なしなのでセキュリティガバガバですが、開発環境なら問題ないでしょう。

IPの部分ですが、192.168.0.0/16でも良いかと思います。検証はしていないので確証はありません。認証の部分もmd5でいいかと思います。

  1. restart

sudo /etc/init.d/postgresql restart

検証

pgweb --url postgres://englishtool:password1@192.168.99.101:5432/englishtool_development

$ rake db:setup
Database 'englishtool_development' already exists
Database 'englishtool_test' already exists
-- enable_extension("plpgsql")
-> 0.1347s
-- enable_extension("plpgsql")
-> 1.4060s

参考