0
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?

More than 1 year has passed since last update.

RENDERからAWSのEC2移行に伴うエラーについて

Posted at

EC2の環境下にはPostgreSQL(RENDERで運用していたため)が入っておらず、gemのインストールができないため,エラーが出ていた。

なので、エラーを解消するために、EC2ではMariaDBを使用してデータベースを構成するため、postgreSQLは削除する。

①Gemfileで、「gem 'pg'」の記述を削除する

②Gemfile.lockを削除、ローカル環境でbundle installをおこなう

③GitHubにコミットとプッシュ

④EC2環境でgit pull origin master
(※デフォルトブランチがmainの場合はgit pull origin main)

⑤EC2環境でbundle install

これでエラーが解消される。

0
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
0
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?