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.

We're sorry, but something went wrong.

Posted at

We're sorry, but something went wrong.

image.png

このエラーはサーバーのエラーが多いのでエラーコードを見にいきましょう。
まず、サーバーにログインしましょう。
スクリーンショット 2020-02-20 11.34.30.png

実行してるフォルダにいきましょう

 cd /var/www/レポジトリ名/

ls コマンドで中身をみてみましょう。

[ec2-user@ip-000-00-00-000 レポジトリ名]$ ls
Gemfile  Gemfile.lock  README.md  Rakefile  app  bin  config  config.ru  current  db  lib  log  package.json  public  releases  repo  revisions.log  shared  storage  test  tmp  vendor

この中にあるcurrentを参照します。

[ec2-user@ip-000-00-00-000 レポジトリ名]$ cd current
[ec2-user@ip-000-00-00-000 current]$

こうなればOK!
また中身をみていきましょう。

[ec2-user@ip-000-00-00-000 current]$ ls
Capfile  Gemfile  Gemfile.lock  README.md  REVISION  Rakefile  app  assets_manifest_backup  bin  config  config.ru  db  lib  log  package.json  public  spec  storage  test  tmp  vendor

次は logをみていきましょう!

[ec2-user@ip-000-00-00-000 current]$ cd log

次はlogの中をみましょう

[ec2-user@ip-172-31-38-129 log]$ ls
production.log  show  unicorn.stderr.log  unicorn.stdout.log

この中にある、'production.log''unicorn.stderr.log'を'less'で参照しましょう

[ec2-user@ip-172-31-38-129 log]$ less production.log
[ec2-user@ip-172-31-38-129 log]$ less unicorn.stderr.log

で中を見てエラーコードをみましょう!

今回はDB内のエラーでviewが表示できなくて起こったエラーでした。
本番環境DBの中を削除する方法
https://qiita.com/QgqKZmHUkJv26pG/items/654c68e090db58c01964

以前はこのエラーでした。
https://qiita.com/QgqKZmHUkJv26pG/items/6f1bf5ec3e1a7c7f3b9d

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?