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

keitamaxAdvent Calendar 2024

Day 14

デプロイした時に`Failed to open stream: No such file or directory`になった話

Posted at

はじめに

こんにちは、エンジニアのkeitaMaxです。

今回はデプロイした時に困ったことがあったのでそのことを記事にします。

Laravel11を使用しています。

困ったこと

Laravel11をGitHub Actionsを使用してXServerにデプロイをしました。

その後、ブラウザでアクセスした時に以下のエラーが出ました。

file_put_contents(/home/xs138787/stg/storage/framework/sessions/dX5qYHmfhQ6VmgZd8wKvGKKO25EkaEGJWzqxzlBf): Failed to open stream: No such file or directory

解決策

以下のコマンドをサーバで実行して足りないフォルダを作成すると、エラーが消えて治ります。

mkdir -p storage/framework/sessions
mkdir -p storage/framework/cache/data/
mkdir -p storage/framework/app/cache
mkdir -p storage/framework/views

おわりに

この記事での質問や、間違っている、もっといい方法があるといったご意見などありましたらご指摘していただけると幸いです。

最後まで読んでいただきありがとうございました!

参考

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