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

VagrantとVirtualboxでどうしても502 Bad Gatwayが出続ける

Posted at

502 Bad Gatewayが何故か出続ける時にやること

注意:
そこそこ時間の掛かる作業です。
また、502はサーバーレスポンスの問題であるため全く異なった問題で合った場合設定ファイルを書き換るだけになってしまう可能性があります。

参考記事

$ cd ~/Homestead && git pull && vagrant destroy && vagrant box update && vagrant up

まとめ

  1. cd ~/Homesteadでhomesteadのディレクトリまで移動します。
    ~ユーザーhome以下に無い時はここを自由に変えてください。

  2. git pullでリモートから最新の情報を取得します。

  3. vagrant destroyで既存のvagrantファイルを削除
    ※おそらくVagrantファイルが古かったりするために起きていた問題のため。

  4. vagrant box updateでboxファイルを最新のものにアップデートします。

  5. vagrant up!!

私はこの方法で502とLaravel-debugerが正常に動作しない問題を解決する事ができました。

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