怎样重启Gunicorn

1. 寻找masterpid

通过执行如下命令,可以获取Gunicorn进程树:

pstree -ap|grep gunicorn

得到如下的结果。

|-grep,6194 --col gunicorn
  |   `-gunicorn,30080 /usr/local/bin/gunicorn collect:app -c collect_gunicorn.py
  |       |-gunicorn,4413 /usr/local/bin/gunicorn collect:app -c collect_gunicorn.py
  |       |-gunicorn,8030 /usr/local/bin/gunicorn collect:app -c collect_gunicorn.py
  |       |-gunicorn,8135 /usr/local/bin/gunicorn collect:app -c collect_gunicorn.py
  |       |-gunicorn,
### 配置 Gunicorn 作为 Systemd 服务 为了使 Gunicorn 能够在后台运行并在系统启动时自动重启,可以通过创建一个 `Systemd` 服务单元文件来实现这一目标。 #### 创建 Service 文件 首先,在 `/etc/systemd/system/` 目录下创建一个新的 `.service` 文件用于定义 Gunicorn 的服务: ```bash sudo nano /etc/systemd/system/gunicorn.service ``` 在此文件内编写如下内容以配置 Gunicorn 服务[^4]: ```ini [Unit] Description=Gunicorn instance to serve myproject After=network.target [Service] User=myuser Group=www-data WorkingDirectory=/home/myuser/myproject Environment="PATH=/home/myuser/myenv/bin" ExecStart=/home/myuser/myenv/bin/gunicorn --workers 3 --bind unix:myproject.sock -m 007 wsgi:app Restart=always RestartSec=5s [Install] WantedBy=multi-user.target ``` 上述配置指定了当网络可用之后再启动该服务,并设置了工作目录、环境变量以及执行命令。特别注意的是 `Restart=always` 和 `RestartSec=5s` 参数确保即使进程意外终止也能被重新拉起[^1]。 #### 加载并启用新服务 保存编辑后的文件后,通过下面的命令通知 `systemd` 刷新其配置缓存并激活新的服务单元[^2]: ```bash sudo systemctl daemon-reload sudo systemctl enable gunicorn ``` 这一步骤使得每次计算机启动时都会自动加载此服务。 #### 启动与状态检查 最后,利用以下指令手动启动服务并验证其当前的状态: ```bash sudo systemctl start gunicorn sudo systemctl status gunicorn ``` 如果一切正常,则可以看到类似于 "active (running)" 的提示信息表示服务正在稳定运行中[^3]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值