Magento 2 : Execute Cron
You don't need the brackets when you run the command so you should run:
sudo php bin/magento cron:run --group="customgroupname_cron"
I merged the other answers from this post a bit - so that only one file is needed, and cron jobs can be run via browser or command line.
Usage via command line:
php cronLaunch.php "Vendor\Module\Class"
Usage via browser:
https://my.domain/hidden/cronLaunch.php?Vendor\Module\Class
Installation
I suggest to copy the source code from below and to store it in src/pub/hidden/cronLaunch.php
. It is very important to protect the hidden
directory from any unauthorized access!
<?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);
Thanks and credits to all the other people who posted answers here!
cron:run [--group="..."] [--bootstrap="..."]
The []
brackets in a command line prototype merely indicate that the arguments they contain are optional.
In this case, it also states that they are chainable.