7
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 run rails db:migrateするとbash: heroku: command not foundと出た時の対処法

Last updated at Posted at 2020-01-27

##事象
railsチュートリアル2章の「2.3.5 アプリケーションをデプロイする」において、
$ git push herokuはできていましたが、
$ heroku run rails db:migrateをすると
bash: heroku: command not found と出てしまいました。

##原因
environmentディレクトリ(別の階層)でherokuをcreateしていたからでした。

##対処法
ec2-user:~/environment/toy_appに移動してから
herokuのインストールコマンドを実行。

~/environment/toy_app
$ source <(curl -sL https://cdn.learnenough.com/heroku_install)

その後、
herokuの新しいアプリケーションを作成。

~/environment/toy_app
$ heroku create

これにより、Railsアプリケーション専用のサブドメインが作成。

push先が前回はenvironment配下(上の階層)だったため、
herokuのpush先を変更。

~/environment/toy_app
git remote set-url heroku {ここに変更するURLを貼り付け}

※herokuのアプリケーション用URLではなく、herokuのgitのURL(heroku→Settings→Info→Heroku Git URL)を入れます。

改めてgit pushします。

~/environment/toy_app
$ git push heroku

再度をheroku run rails db:migrate行います。

~/environment/toy_app
$ heroku run rails db:migrate

すると
Running rails db:migrate on [herokuの固有ドメイン名]... up, run.2996 (Free)
と出て問題なくアプリケーションをデプロイできました。

##参考
https://railstutorial.jp/chapters/toy_app?version=5.1#sec-deploying_the_toy_app
https://qiita.com/Tattsum/items/b86c9d698b0727934836

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