-1

我在 AWS Elastic Beanstalk 上运行 Symfony 4.4 Web 应用程序。我有一个非常大的 PDF 生成例程,我已将其传递给 Symfony messenger。

在本地工作(Ubuntu 18.04)运行bin/console messenger:consume效果很好。ec2-user如果我 ssh 进入 EC2 实例并在执行 a 之后运行它,它也可以工作sudo chmod 777 -R /var/www/html/var/(否则控制台命令失败,无法写入 var 文件夹)

我已经设置了以下.ebextesion文件,该文件成功安装了主管,添加了配置文件,并开始了该过程。[它是从众多在线资源中拼凑起来的,不,我真的不知道我在做什么,我觉得它有点乱]

files:
  "/tmp/messenger-consume.conf":
    mode: "000644"
    owner: root
    group: root
    content: |
      [program:messenger-consume]
      command=php /var/www/html/bin/console messenger:consume async --time-limit=1800 --memory-limit=340M --sleep=30
      user=webapp
      numprocs=1
      autostart=true
      autorestart=true
      process_name=%(program_name)s_%(process_num)02d

  "/tmp/supervisord.conf":
    mode: "000644"
    owner: root
    group: root
    content: |
      ; supervisor config file

      [unix_http_server]
      file=/var/run/supervisor.sock   ; (the path to the socket file)
      chmod=0700                       ; sockef file mode (default 0700)

      [supervisord]
      user=root
      logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
      pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
      childlogdir=/var/log/supervisor            ; ('AUTO' child log dir, default $TEMP)

      ; the below section must remain in the config file for RPC
      ; (supervisorctl/web interface) to work, additional interfaces may be
      ; added by defining them in separate rpcinterface: sections
      [rpcinterface:supervisor]
      supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

      [supervisorctl]
      serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL  for a unix socket

      ; The [include] section can just contain the "files" setting.  This
      ; setting can list multiple files (separated by whitespace or
      ; newlines).  It can also contain wildcards.  The filenames are
      ; interpreted as relative to this file.  Included files *cannot*
      ; include files themselves.

      [include]
      files = /etc/supervisor/conf.d/*.conf
      ; Change according to your configurations

commands:
  01_01_install_supervisord:
    command: |
      sudo easy_install supervisor
      sudo mkdir -p /etc/supervisor/conf.d/
      sudo mkdir -p /var/log/supervisor
      sudo touch /var/log/supervisor/supervisord.log
    ignoreErrors: true

container_commands:
  01_01_copy_supervisor_configuration_files:
    command: |
      sudo mv /tmp/supervisord.conf /etc/supervisord.conf
      sudo mv /tmp/messenger-consume.conf /etc/supervisor/conf.d/messenger-consume.conf
    ignoreErrors: true
  02_01_start_supervisord:
    command: |
      sudo /usr/local/bin/supervisord -c /etc/supervisord.conf
      sudo /usr/local/bin/supervisorctl reread
      sudo /usr/local/bin/supervisorctl update
      sudo /usr/local/bin/supervisorctl restart all
      sudo /usr/local/bin/supervisorctl start messenger-consume:*
    ignoreErrors: true

supervisord如果以root身份运行,我只会有任何成功。

如果我运行我的“程序” messenger-consume,因为ec2-user它在尝试写入 web var 文件夹时会遇到相同的错误。

如果我运行messenger-consume正常webapp。所以这就是我选择的路线。

在所有情况下,运行messenger-consumeas rootec2-userwebappphp 环境变量都是空的。数据库连接和我正在使用的其他一些服务需要这些变量。

.env如果我用 RDS 用户、主机、密码等填充文件,这将有效。在.env文件中包含安全凭据是一个坏主意,它位于 git 存储库中,并且还会导致性能问题。[或者我读过,这只是一个坏主意]

有没有办法在没有文件的情况下向 Symfony 提供环境变量.env?或者我怎样才能让它即时填充(可能通过另一个 .ebextension 文件来读取 php env vars 并写入文件?)如果我有.env文件和我的 php env vars,它仍然会导致性能问题吗?

我愿意接受有关如何完成这项工作的任何建议。(Symfony 4 信使 + AWS EB)

4

1 回答 1

0

.env.prod.local我的解决方案是通过读取 php 环境变量来创建部署文件getenv()

我将以下代码放入 symfony 控制台命令中

        $io = new SymfonyStyle($input, $output);
        $dotenv = new Dotenv(false);

        $env = getenv('APP_ENV');
        $filename = '.env.'.$env.'.local';
        $filePath = $this->root.'/'.$filename;

        if (file_exists($filePath)) {
            $io->error(sprintf('"%s" file exists. It must be removed first!', $filePath));

            return 1;
        }

        $handle = fopen($filePath, 'w+');

        $vars = $dotenv->parse(file_get_contents($this->root.'/.env'));

        foreach ($vars as $key => $value) {
            $envVar = getenv($key) ?: $value;
            $line = $key.'='.$envVar.PHP_EOL;

            fwrite($handle, $line);
        }

        fclose($handle);

        $io->success(sprintf('Generated "%s" file for this "%s" environment', $filename, $env));

        return 0;

并更新了控制台命令

. . .
  02_01_start_supervisord:
    command: |
      rm .env.$APP_ENV.local
      php bin/console grid:generate-env-local
      sudo /usr/local/bin/supervisord -c /etc/supervisord.conf
. . .

这个想法是删除现有.env.prod.local文件,因为它实际上会覆盖任何其他.env文件值,然后重新生成它。

于 2020-03-23T13:48:44.427 回答