为什么我不能将 Cron 条目添加到我的 ubuntu 18.04 服务器?
Why i can't add Cron entry to my ubuntu 18.04 server?
创建了 laravel artisan 命令以在 Laravel 5.5 Scheduler 中执行(每个月)。
当我使用 crontab -e 将 Cron 条目添加到我的 ubuntu 18.04 服务器时:
* * * * * php /var/www/html_public/project-name/artisan schedule:run >> /dev/null 2>&1
command on terminal
注:
$ php artisan schedule:run
工作得很好
尝试以其他方式编写您的 cron:
* * * * * cd /var/www/public_html/laravel-project-name && php artisan schedule:run >> /dev/null 2>&1
创建了 laravel artisan 命令以在 Laravel 5.5 Scheduler 中执行(每个月)。
当我使用 crontab -e 将 Cron 条目添加到我的 ubuntu 18.04 服务器时:
* * * * * php /var/www/html_public/project-name/artisan schedule:run >> /dev/null 2>&1
command on terminal
注:
$ php artisan schedule:run
工作得很好
尝试以其他方式编写您的 cron:
* * * * * cd /var/www/public_html/laravel-project-name && php artisan schedule:run >> /dev/null 2>&1