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?

XserverでLaravel 11のCRON設定をする際にハマった点と解決策

Last updated at Posted at 2024-07-14

概要

XserverレンタルサーバーのCRON設定を行う際に、ハマった点を書き残しておく

思い当たる原因(?)

解決方法

通常XserverでCron設定を行う際は、下記のような記述をする(はず)

* * * * * cd /home/test/test && /usr/bin/php7.3 artisan schedule:run >> /dev/null 2>&1

自分の環境では下記のように記述したところ、正常に動作した

* * * * * cd /home/{username}/{domain}/public_html/{laravelまでのパス} && /home/{username}/bin/php artisan schedule:run >> /dev/null 2>&1
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?