dongpao1873 2016-10-23 00:20
浏览 142
已采纳

如何在不停机的情况下自动部署在后台运行的PHP脚本的新版本?

I have a AMQP consumer (a RabbitMQ consumer) written in PHP always active running in the background. This script is run in multiple nodes and 12 times per node: 12 unix background processes running:

php -f consumer.php &.

If a new version of the code must be deployed, at the moment I always have to kill ALL these processes manually and launch them again one by one, in each node.

  1. Is there a way to automate the deployment of background scripts? I.e. put it in a deployment pipeline and then having them reloaded, similarly to using https://deployer.org.
  2. Is there a way to avoid downtime?
  3. Any way ReactPHP would help in this case?
  • 写回答

1条回答 默认 最新

  • duancong7573 2016-10-23 00:44
    关注

    Found the answer in the Laravel docs (the solution works for any always running background process, not just PHP and Laravel). Supervisor!

    Configuring Supervisor

    Supervisor configuration files are typically stored in the /etc/supervisor/conf.d directory. Within this directory, you may create any number of configuration files that instruct supervisor how your processes should be monitored. For example, let's create a laravel-worker.conf file that starts and monitors a queue:work process:

    Starting Supervisor

    Once the configuration file has been created, you may update the Supervisor configuration and start the processes using the following commands:

    sudo supervisorctl reread

    sudo supervisorctl update

    sudo supervisorctl start laravel-worker:*

    It will even help me starting as many processes I want with a single configuration file and single command. Again, from the Laravel docs:

    [program:laravel-worker]
    process_name=%(program_name)s_%(process_num)02d
    command=php /home/forge/app.com/artisan queue:work sqs --sleep=3 --tries=3
    autostart=true
    autorestart=true
    user=forge
    numprocs=8
    redirect_stderr=true
    stdout_logfile=/home/forge/app.com/worker.log
    

    By calling sudo supervisorctl start laravel-worker:*, 8 background processes will run, which also restart in case of error.

    If I just want to restart with a new released version, I call the restart command directly:

    supervisorctl restart laravel-worker:*

    I'll just integrate this as a Deployer task in my CI/CD pipeline.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘