当前位置:   article > 正文

FastAPI + NGINX + Gunicorn 部署域名接口_fastapi vllm ngix

fastapi vllm ngix

简介: 今天接到一个活,给了我一台云服务器、域名,然后用FastAPI+NGINX来部署接口,接口的url是由域名组成的。话不多说直接看效果:

 1.安装相关工具

1.1、 安装python:

如果已经安装python就跳过咯

  1. sudo apt update
  2. sudo apt install python3.6 python3.6-venv -y

1.2、安装Supervisor和NGINX

Supervisor 是一个用于类Unix操作系统(包括Linux)的进程控制系统,它用于监视和管理程序的进程。

sudo apt install supervisor nginx -y

1.3、启用并启动Supervisor:

enable命令将确保 Supervisor 在启动时自动启动,并使用start命令立即启动 Supervisor 服务

  1. sudo systemctl enable supervisor
  2. sudo systemctl start supervisor

2.创建虚拟环境

我们为项目单独创建一个虚推,推荐这么做。

首先cd到项目目录下(fastapi_dome为我的项目目录)

cd fastapi_dome

 创建一个名为fastpai的虚拟环境

python3.6 -m venv fastapi

激活虚拟环境

source fastapi/bin/activate

成功激活后,你的命令行提示符前面应显示fastapi

然后安装相关的第三方库

pip install fastapi[all]
pip install uvicorn
pip install gunicorn

测试能否运行

uvicorn main:app

这里可能会报错:

File "/home/ubuntu/fastapi-nginx-gunicorn/fastapi/lib/python3.6/site-packages/uvicorn/server.py", line 67, in run return asyncio.run(self.serve(sockets=sockets))
AttributeError: module 'asyncio' has no attribute 'run'

然后发现大概是因为uvicorn的版本与python版本不适配,所以我们可以将uvicorn的版本降低一点。

这样就说明成功了

3.配置Gunicorn 

配置Gunicorn有两个步骤。首先,明确指定 Gunicorn 的配置要求。其次,设置Supervisor程序来运行Gunicorn。

3.1 设置Gunicorn

在项目目录中创建一个名为 gunicorn_start 的文件:

vim gunicorn_start

然后复制粘贴以下内容到里面:

  1. #!/bin/bash
  2. NAME=fastapi-app
  3. DIR=/home/ubuntu/fastapi_dome
  4. USER=ubuntu
  5. GROUP=ubuntu
  6. WORKERS=3
  7. WORKER_CLASS=uvicorn.workers.UvicornWorker
  8. VENV=$DIR/fastapi/bin/activate
  9. BIND=unix:$DIR/run/gunicorn.sock
  10. LOG_LEVEL=error
  11. cd $DIR
  12. source $VENV
  13. exec gunicorn main:app \
  14. --name $NAME \
  15. --workers $WORKERS \
  16. --worker-class $WORKER_CLASS \
  17. --user=$USER \
  18. --group=$GROUP \
  19. --bind=$BIND \
  20. --log-level=$LOG_LEVEL \
  21. --log-file=-

这是您的设定解释:

第1行表示此脚本将由bash shell执行。

第3行至第11行指定您将传递给Gunicorn的配置选项。大多数参数都是直观的,除了 WORKERS、WORKER_CLASS 和 BIND :

WORKERS:定义要使用的工作进程数量,通常建议使用CPU核心数+1。

WORKER_CLASS:指定要使用的工作进程类型。在此示例中,您指定Uvicorn Worker作为ASGI服务器。

BIND:指定Gunicorn绑定到的 server socket。

第13行和第14行将当前位置更改为项目目录并激活虚拟环境。

第16行至第24行使用指定的参数运行Gunicorn。

这里你主要修改:

        1.DIR   (改为你自己的项目目录路径)

        2.USER=ubuntu   你自己的用户名,我的都是ubuntu
        3.GROUP=ubuntu  你自己的用户组

        4. VENV = 你刚刚创建的虚拟环境的路径

保存并关闭文件。然后,通过运行以下命令使其可执行:

chmod u+x gunicorn_start

最后,在项目目录中创建一个文件夹 run ,用于存储您在参数中定义的Unix套接字文件BIND:

mkdir run

3.2 配置Supervisor

首先,在项目目录中创建一个名为 logs 的目录,用于存储应用程序的错误日志:

mkdir logs

接下来,通过运行以下命令创建Supervisor的配置文件

sudo vim /etc/supervisor/conf.d/fastapi-app.conf

复制并粘贴以下内容到文件中:

  1. [program:fastapi-app]
  2. command=/home/ubuntu/fastapi_dome/gunicorn_start
  3. user=ubuntu
  4. autostart=true
  5. autorestart=true
  6. redirect_stderr=true
  7. stdout_logfile=/home/ubuntu/fastapi_dome/logs/gunicorn-error.log

此配置文件指定了之前创建的 gunicorn_start 脚本,并设置了 ubuntu 作为用户。Supervisor 将在服务器启动时启动应用程序,并在应用程序失败时重新启动它。错误日志将记录在项目目录下 logs/gunicorn-error.log 文件中。

重新加载Supervisor配置并重启服务,通过运行以下命令:

  1. sudo supervisorctl reread
  2. sudo supervisorctl update

最后,您可以通过运行以下命令检查程序的状态:

sudo supervisorctl status fastapi-app

如果一切顺利,fastapi-app 服务的状态应显示为 RUNNING。

ubuntu20.04的话可能遇到这个问题:

supervisor: couldn't exec /opt/apps/collect-app/scripts/start-flume-agent.sh: ENOEXEC
supervisor: child process was not spawned     

 你需要将command=的后面加上sh , 如上图所示

然后:

  1. supervisorctl reread
  2. supervisorctl update fastapi-app

 
最后,如果您对代码进行了更改,可以通过运行以下命令重新启动服务以应用更改:

sudo supervisorctl restart fastapi-app

 4. 配置Nginx反向代理

为您的项目创建一个新的 NGINX 配置文件:

sudo vim /etc/nginx/sites-available/fastapi-app

打开NGINX配置文件并粘贴以下内容:

  1. upstream app_server {
  2.     server unix:/home/ubuntu/fastapi_dome/run/gunicorn.sock fail_timeout=0;
  3. }
  4.  
  5. server {
  6.     listen 80;
  7.  
  8.     # add here the ip address of your server
  9.     # or a domain pointing to that ip (like example.com or www.example.com)
  10.     server_name XXXX;
  11.  
  12.     keepalive_timeout 5;
  13.     client_max_body_size 4G;
  14.  
  15.     access_log /home/ubuntu/fastapi_dome/logs/nginx-access.log;
  16.     error_log /home/ubuntu/fastapi_dome/logs/nginx-error.log;
  17.  
  18.     location / {
  19.         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  20.         proxy_set_header Host $http_host;
  21.         proxy_redirect off;
  22.  
  23.         if (!-f $request_filename) {
  24.             proxy_pass http://app_server;
  25.             break;
  26.         }
  27.         }
  28. }

这是 NGINX 配置文件。它的工作原理如下:

第 1 行到第 3 行app_server定义了一个称为NGINX 将代理请求的服务器集群。请求被重定向到位于 的 Unix socket file /home/fastapi-user/fastapi-nginx-gunicorn/run/gunicorn.sock。设置fail_timeout=0告诉 NGINX 不要将服务器视为失败,即使它没有响应。

第 3 行到第 5 行定义了 NGINX 将用于处理请求的虚拟服务器的配置。在本例中,它侦听端口 80。将 XXXX 替换为 IP 或站点名称。

第 12 行和第 13 行指定keepalive_timeout设置客户端可以保持持久连接打开的最长时间,并client_max_body_size设置 NGINX 允许的客户端请求正文的大小限制。

第 15 行和第 16 行指定 NGINX 将写入其访问和错误日志的位置。

第 18 至 27 行定义了 NGINX 将如何处理对根目录的请求/。您提供一些规范来处理标头,并设置一个指令来将请求代理到您app_server之前定义的。

通过运行以下命令从文件创建符号链接来启用站点配置sites-available:sites-enabled

sudo ln -s /etc/nginx/sites-available/fastapi-app /etc/nginx/sites-enabled/

测试配置文件是否正常并重启NGINX:

  1. sudo nginx -t
  2. sudo systemctl restart nginx

您现在应该已经运行了 FastAPI 应用程序,并且 Gunicorn+Uvicorn 作为 ASGI 服务器,NGINX 在它们前面作为反向代理。到这里你就所有的任务了,恭喜你!!!

参考:http://t.csdnimg.cn/7mkul

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/542743
推荐阅读
相关标签
  

闽ICP备14008679号