我有问题在laravel 5.3中使用任务调度来运行artisan queue:work
命令
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel {
protected $commands = [];
\Log::info('schedule:run');
protected function schedule(Schedule $schedule)
{
$schedule->command('queue:work --tries=3')
->everyMinute()
->withoutOverlapping()
->evenInMaintenanceMode()
->sendOutputTo(storage_path() . '/queue-logs/queue-jobs.log', true);
}
}
* * * * * /usr/local/bin/php /home/s***app/public_html/artisan schedule:run
我每分钟都在\Log::info('schedule:run');
文件中登录/queue-logs/queue-jobs.log
。但命令queue:work --tries=3
不起作用,并且存储在作业表中的队列未处理。
而且我的托管服务提供商阻止了我的每一分钟请求,并建议我将此cron运行到15分钟而不是1分钟
我在使用Ubuntu 16.04的Laravel 5.7中遇到了同样的问题:我在作业表中的作业正在排队但没有被执行:
这就是我做的:
Ssh到您的服务器,即ssh username@ip
然后运行sudo nano /etc/crontab
在文件* * * * * username php /var/www/your_laravel_project/artisan schedule:run >> /dev/null 2>&1
中添加以下行
确保你不要忘记这个部分:/artisan
在你的项目文件夹之后。我犯了这个错误而且我的cron没有运行。
说明:
.---------------- minute (0 - 59)
| .------------- hour (0 - 23)
| | .---------- day of month (1 - 31)
| | | .------- month (1 - 12) OR jan,feb,mar,apr ...
| | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
| | | | |
* * * * * user-name command-to-be-executed
然后运行sudo systemctl restart cron
以重新启动cron服务。
您还可以使用sudo systemctl status cron
查看它的状态
提示:如果您不使用共享主机会更好,因为许多共享主机服务不允许您每分钟运行一次crons。 Digital Ocean的液滴套装每月低至20美元。考虑使用Digital Ocean,AWS等设置您自己的服务器。