1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Rails】Renderにデプロイしたらビルドエラーが起こった

Posted at

概要

Railsチュートリアルの第7章を進めていた時、
TLSと本番環境用の設定をRenderにデプロイしたときにビルドエラーが発生しました。

ActiveRecord::ConnectionNotEstablished: could not translate host name "****" to address: Name or service not known

Caused by:
PG::ConnectionBad: could not translate host name "****" to address: Name or service not known
 
Tasks: TOP => db:migrate
 (See full trace by running task with --trace)
==> Build failed 😞

結論(解決策)

PostgreSQLのリージョンをシンガポールからオレゴンに変更した

試したこと

PostgreSQLのVersionを15に変更する

Railsチュートリアルが更新された時からRenderやRailsの仕様が変わったのかも?という仮説のもと実行。
やってみたがビルドは成功せず。

DBのリージョンをシンガポールからオレゴンに変更(解決策)

ググっていると以下のissueを発見

このissueではオレゴンからシンガポールに変えたら成功した事例

これと同様に、逆のことをやってみた。
あまり根拠はないがやってみたらビンゴ

私と同じようにRailsチュートリアルを学んでいる方のためになれば幸いです。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?