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.

WSL2でLaravel sail環境を構築した際にパーミッションエラーが発生した際の対処法

Posted at

はじめに

プロフェッショナルWebプログラミング Laravel
上記を参考にUbuntu 20.04.4 LTS(WSL2)でLaravel sail環境を構築。
「sail test」でテストを実行しようとした際にFeatureテストでパーミッションエラーが発生していた。

環境

Laravel Framework 9.21.6

Ubuntu 20.04.4 LTS(WSL2)

パーミッション変更

rootでコンテナにログイン
$ sail root-shell
/varディレクトリ以下全てのファイル、ディレクトリのパーミッションを変更
$ chmod -R 777 /var/
sail testが成功するか確認

無題.png

今後同じようにパーミッションエラーが発生した場合、rootでログインしてからchmodコマンドで変更する。
(sail shellでログインするとsailユーザーになりパーミッション変更の権限がないため)

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?