Magento 2: Cron'u Yürüt


11

Cron'u komut satırından manuel olarak nasıl yürütebilirim.

Magento 1.x'te cron'u şu şekilde çalıştırabiliriz:

www.testsite.com/cron.php 

ama magento 2'de bunu nasıl yapabilirim?

Lütfen cmd'den cron'u nasıl çalıştırabileceğim konusunda da bana yardımcı olun. Zaten çalışmayan komutun altında kullandım:

sudo php bin/magento cron:run [--group="customgroupname_cron"]

Bu bir istisna döndürüyor:

[RuntimeException]   
Too many arguments.  

cron:run [--group="..."] [--bootstrap="..."]

------- Güncelleme -------

crontab.xml

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Cron:etc/crontab.xsd">

    <group id="customgroupname_cron">
        <job name="customgroupname_cron" instance="Namespace\Modulename\Cron\Customcronjob" method="execute">
            <schedule>* * * * *</schedule>
        </job>
    </group>
</config>

Yukarıdaki dosyanın yürütme yönteminde günlük koydum. Ama 1 dakika sonra bu da üretilmez.Yani, yöntemimin yürütüldüğünü nasıl bilebilirim?


Görünüşe göre, bana en azından, yine de
siten.com/update/cron.php

Yanıtlar:


17

Komutu çalıştırdığınızda köşeli parantezlere ihtiyacınız yoktur, bu nedenle çalıştırmalısınız:

sudo php bin/magento cron:run --group="customgroupname_cron"

Evet bu "işleri plana göre koştu" şeklinde bir yanıt veriyor. Ama lütfen güncellenmiş sorularıma bakın.
Krupali

4

Bu yazıdaki diğer cevapları biraz birleştirdim - böylece sadece bir dosya gerekli ve cron işleri tarayıcı veya komut satırı üzerinden çalıştırılabilir.

Komut satırı üzerinden kullanım:

php cronLaunch.php "Vendor\Module\Class"

Tarayıcı ile kullanım:

https://my.domain/hidden/cronLaunch.php?Vendor\Module\Class

Kurulum

Kaynak kodu aşağıdan kopyalamanızı ve saklamanızı öneririm src/pub/hidden/cronLaunch.php. hiddenDizini yetkisiz erişimlere karşı korumak çok önemlidir !

<?php
require '../../app/bootstrap.php';
if (php_sapi_name() !== 'cli' && isset($_GET['job'])) {
    define('CRONJOBCLASS', $_GET['job']);
} elseif (php_sapi_name() !== 'cli') {
    die('Please add the class of the cron job you want to execute as a job parameter (?job=Vendor\Module\Class)');
} elseif (!isset($argv[1])) {
    die('Please add the class of the cron job you want to execute enclosed IN DOUBLE QUOTES as a parameter.' . PHP_EOL);
} else {
    define('CRONJOBCLASS', $argv[1]);
}

class CronRunner extends \Magento\Framework\App\Http
    implements \Magento\Framework\AppInterface
{

    public function __construct(
        \Magento\Framework\App\State $state,\Magento\Framework\App\Response\Http $response)
    {
        $this->_response = $response;
        $state->setAreaCode('adminhtml');
    }

    function launch()
    {
        $cron = \Magento\Framework\App\ObjectManager::getInstance()
            ->create(CRONJOBCLASS);

        $cron->execute();
        return $this->_response;
    }
}

$bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
$app = $bootstrap->createApplication('CronRunner');
$bootstrap->run($app);

Buraya cevap gönderen diğer herkese teşekkürler ve krediler!


3
cron:run [--group="..."] [--bootstrap="..."]

[]Bir komut satırı prototip içinde parantez sadece içerdikleri argümanlar isteğe bağlı olduğunu göstermektedir.
Bu durumda, zincirlenebilir olduklarını da belirtir.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.