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.

Herokuの本番環境でactiveadminにログインできない

Last updated at Posted at 2022-02-20

原因

現在開発しているアプリケーションにてactive_adminを導入した際、デプロイ後、本番環境で管理画面にアクセスを試みる。
スクリーンショット 2022-02-07 19.28.56.png

あれ、入れない。。。。

単純に本番環境のDBに管理者としてユーザー登録ができていない為アクセスができていない状況。

その時のseed.rbには

AdminUser.create!(email: "設定したアドレス", password: "設定したパスワード", password_confirmation: "設定したパスワード") 

と記入されており、ローカル環境では上手くいった為、てっきり本番環境でもheroku run rake db:seedしたらいけると勘違い;;;

解決方法

heroku consolでコンソールを起動

AdminUser.create(:email => "admin@test.com", :password => "password", :password_confirmation => "password")

上記のような適当なadmin userを作り、管理者画面にて先程作ったユーザー情報でログイン。

ドキドキしながらログインしてみる。。。

スクリーンショット 2022-02-07 19.31.30.png

無事、解決しました!!!!!

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?