如何在托管服务器上运行 artisan 命令 Schedule:run? (拉拉维尔)

问题描述 投票:0回答:3

我在 xampp\htdocs\project pp\Console\Commands 文件夹中有一个 statusUpdate.php 文件。

状态更新.php:

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use DB;


class statusUpdate extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'status:update';

/**
 * The console command description.
 *
 * @var string
 */
protected $description = 'Update Job status daily';

/**
 * Create a new command instance.
 *
 * @return void
 */
public function __construct()
{
    parent::__construct();
}

/**
 * Execute the console command.
 *
 * @return mixed
 */
public function handle()
{
    $affected = DB::table('jobs')->update(array('status' => 1));
}
}

我按照 Laravel 官方文档创建了它。之后,我将 \App\Console\Commands\statusUpdate::class 添加到位于 xampp\htdocs\project pp\Console 的 Kernel.php 文件中。

这是 Kernel.php 文件中的代码:

<?php

namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        \App\Console\Commands\statusUpdate::class,
];

/**
 * Define the application's command schedule.
 *
 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
 * @return void
 */
protected function schedule(Schedule $schedule)
{
    $schedule->command('status:update')
             ->everyFiveMinutes();
}
}

然后我在 Windows 上使用 CMD 运行以下命令:

php artisan 时间表:运行

现在,它在我的本地服务器上运行良好。我的作业表中的状态字段正确更新为 1。

但是,当我将该项目部署到共享主机并在 cPanel 中设置 CRON 作业时,它不起作用。 CRON 作业命令是:

php /path/to/artisan schedule:run 1>> /dev/null 2>&1

在此托管环境中,该命令不起作用。我该如何解决这个问题?

php laravel laravel-5 cron cpanel
3个回答
23
投票

嗯。我按照你说的给你答案。

Cron 作业命令是这样的:

php /path/to/artisan schedule:run 1>> /dev/null 2>&1

该路径应该是在服务器中找到 artisan 文件的位置。像这样:

假设您的 artisan 文件位置是

/var/www/artisan
,那么简单的答案可以这样做:

php /var/www/artisan schedule:run 1>> /dev/null 2>&1

只需检查是否有效。谢谢!

更新

https://i.stack.imgur.com/CYjI0.png

这就是它应该的样子。


14
投票

这对我来说效果很好

/usr/local/bin/php /path/to/artisan schedule:run >> /dev/null 2>&1

2
投票

您应该将 cPanel 服务器中的命令添加为

/usr/local/bin/php /home/xyz/public_html/artisan schedule:run 1>> /home/xyz/public_html/log_laravel 2>&1

这将保留所有日志

/home/xyz/public_html/log_laravel

Running scheduled command: '/opt/cpanel/ea-php71/root/usr/bin/php' 'artisan' SyncAPIOrders:orders > '/dev/null' 2>&1

在我的例子中,cron 作业不起作用,如果您要将命令安排为每天一次(即 00:00),并且同一时间反映在

$schedule->command();
对象中

如果命令不正确,我曾经在电子邮件中收到此警告:

PHP Warning:  Module 'magickwand' already loaded in Unknown on line 0
Status: 404 Not Found
X-Powered-By: PHP/5.6.37
Content-type: text/html; charset=UTF-8

No input file specified.

Kernel.php
中您应该指定

/**
 * Define the application's command schedule.
 *
 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
 * @return void
 */
protected function schedule(Schedule $schedule)
{
    $schedule->command('SyncAPIOrders:orders')
               ->timezone('Asia/Kolkata')
               ->dailyAt('00:00');
}
© www.soinside.com 2019 - 2024. All rights reserved.