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 3 years have passed since last update.

herokuへのデプロイ後エラー(We're sorry, but something went wrong.) の対応

Posted at

#エラー概要

herkuへのデプロイ後 viewを押すと

https___qiita-image-store.s3.amazonaws.com_0_270456_362496d9-176c-ba4f-50ff-9cb2802040b9.png

との表示

#デバッグ方法

まず、 

$ heroku logs --tail 

を実行し、
現在の状況を確かめる。

私の場合は

zsh: command not found: heroku

とのエラーが出たため、

$ brew tap heroku/brew && brew install heroku

にて、heroku CLIをインストール

インストール後は

$ heroku -v

にてバージョンを確認しました。

再度現状確認してみると

$ heroku logs --tail
 ›   Error: Missing required flag:
 ›     -a, --app APP  app to run command against
 ›   See more help with --help

とのエラーが表示

$ git remote -v

にてherokuに紐付けされているか確認

紐付けされていない場合は、

$  heroku git:remote -a アプリ名

を実行し紐付ける

最後に

$ heroku run rake db:migrate

を実行し、
heroku上のデータベースをリセットしたことにより
問題なく動きました。

#最後に
ご視聴いただきありがとうございます。
こちらの記事が皆様の役に立てば幸いです。

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?