我已经在Symfony 4中构建了一个命令,该命令在从CLI运行时可以正常运行,但是在由cron运行时不执行。控制台命令正在运行,并且不会引发任何错误。
我什至在execute
中丢了一个,但它并没有失败/出错:
public function execute(InputInterface $input, OutputInterface $output): void
{
throw new \Exception('I am doing something');
}
我的完整命令如下所示,并且已自动连线:
<?php declare(strict_types = 1);
namespace CRMInterface\Command\Customer;
use CRMInterface\Service\Customer\CustomerSyncService;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class CustomerSyncCommand extends Command
{
const COMMAND_NAME = 'crm:sync:customer';
/**
* @var CustomerSyncService
*/
private $syncService;
/**
* @var LoggerInterface
*/
private $logger;
/**
* @param CustomerSyncService $syncService
* @param LoggerInterface $logger
*/
public function __construct(CustomerSyncService $syncService, LoggerInterface $logger)
{
parent::__construct(self::COMMAND_NAME);
$this->syncService = $syncService;
$this->logger = $logger;
}
protected function configure()
{
$this
->setName(self::COMMAND_NAME)
->setDescription('Processes outstanding portal sync tasks');
}
/**
* @param InputInterface $input
* @param OutputInterface $output
* @return void
*/
public function execute(InputInterface $input, OutputInterface $output): void
{
$this->logger->info('Syncing customers...');
try {
$this->syncService->sync();
$this->logger->info('Customer sync complete.');
} catch (\Exception $e) {
$this->logger->error('Customer sync failed: ' . $e->getMessage());
}
}
}
我的cron工作如下:
*/3 * * * * www-data cd /var/www/html && /usr/local/bin/php bin/console crm:sync:customer --env=prod
此设置可在我运行的Symfony 3应用程序和Symfony 2.8应用程序中运行,但在运行4的应用程序中却不运行,这使我发疯。
我的bin/console
如下-我删除了与APP_ENV有关的内容,因为在我的情况下它是多余的,并且由于cron中缺少env var而失败了。
#!/usr/bin/env php
<?php
use CRMInterface\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Debug\Debug;
set_time_limit(0);
require __DIR__.'/../vendor/autoload.php';
if (!class_exists(Application::class)) {
throw new \RuntimeException('You need to add "symfony/framework-bundle" as a Composer dependency.');
}
$input = new ArgvInput();
$env = $input->getParameterOption(['--env', '-e'], $_ENV['APP_ENV'] ?? 'dev');
$debug = ($_ENV['APP_DEBUG'] ?? ('prod' !== $env)) && !$input->hasParameterOption(['--no-debug', '']);
if ($debug) {
umask(0000);
if (class_exists(Debug::class)) {
Debug::enable();
}
}
$kernel = new Kernel($env, $debug);
$application = new Application($kernel);
$application->run($input);
任何人都可以为我指出正确的方向,为什么该命令正在运行但又没有执行下来?
这几乎就像是在没有命令的情况下仅运行bin/console
...这可能与延迟加载有关吗?
答案 0 :(得分:1)
对于那些命令没有执行且没有错误的类似问题,请检查cron是否可以访问您的应用程序使用的所有环境变量。
在这种情况下,抛出了一个异常,但是被Symfony Application
类捕获了。 Environment variable not found: "ELASTICSEARCH_INDEX".
。不幸的是,它继续运行,就好像它已经运行了一样。 (可能会在存储库中造成问题)。
对于基于Ubuntu的apache容器上的Docker,解决方案非常简单-在入口点脚本中添加一行以将环境变量写入/etc/environment
文件中:
FROM php:7.2
EXPOSE 80 443
CMD ["sh", "./.docker/run.sh"]
run.sh:
#!/usr/bin/env bash
printenv | grep -v "no_proxy" >> /etc/environment \
&& /etc/init.d/cron start \
&& apache2-foreground
答案 1 :(得分:0)
类似于上一个答案,但是请确保将cron作业添加到适当的用户。
示例:crontab -u www-data -e 通过更新或添加来编辑cron作业
* / 3 * * * * / usr / local / bin / php / var / www / html / bin / console crm:sync:customer --env = prod
您可以在命令上添加一些测试,例如以下内容
0 * * * *如果[-f / var / www / html / bin / console]; 然后/ var / www / html / bin / console crm:sync:customer --env = prod >> /var/log/symfony/crm.log;否则回显“未找到控制台”
/var/log/symfony/crm.log; fi> / dev / null 2>&1