LoginSignup
0
1

More than 3 years have passed since last update.

Laravel Duskでエラー「Facebook\WebDriver\Exception\UnknownErrorException: unknown error: net::ERR_CONNECTION_REFUSED」が発生した場合の対処方法

Posted at

エラー発生したタイミング

php artisan duskを実行時に、タイトルにあるエラーメッセージが表示

原因

.envファイルのAPP_URLパラメータで指定されている値が原因

解決方法

公式にも明記されているが、APP_URLには、ブラウザでアプリケーションにアクセスするために使用するURLを設定する必要がある。

アプリケーションのURLが下記の場合
Starting Laravel development server: http://127.0.0.1:8000

APP_URL=http://localhost //(デフォルト)
↓
APP_URL=http://localhost:8000 //(変更後)
0
1
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
1