python Flask web项目uwsgi + nginx部署

news/2024/12/2 14:43:13/

1.安装python

2.虚拟环境

2.1安装vertualenv

pip3 install virtualenv

2.2创建虚拟环境

创建保存环境的目录:

mkdir venvs

创建虚拟环境:

[root@root /]# virtualenv /home/xxx/venvs/flask2 --python=python3

查看虚拟环境:

[root@root venvs]# ls
flask2

2.3激活虚拟环境

activiate是激活虚拟环境的命令脚本,在虚拟环境的bin目录下

[root@root bin]# ls
activate      activate.fish  activate.ps1      deactivate.nu  pip3     pip3.7  python3    wheel   wheel-3.7
activate.csh  activate.nu    activate_this.py  pip            pip-3.7  python  python3.7  wheel3  wheel3.7

执行activate激活环境

[root@root bin]# source activate
(flask2) [root@root bin]# 

3.环境-uwsgi

3.1安装uwsgi

激活虚拟环境,安装uwsgi

source activate
pip install uwsgi

3.2基于uwsgi运行flask项目

3.2.1命令的方式

uwsgi --http :8080 --wsgi-file app.py --callable app

3.2.2配置文件(推荐)

uwsgi.ini

[uwsgi]
socket = 127.0.0.1:8001
chdir = /home/xxx/data/code/xxx
wsgi-file = app.py
callable = app
processes = 1
virtualenv = /home/xxx/venvs/flask2

启动命令

uwsgi --ini uwsgi.ini

ctrl + c停止

后台启动

uwsgi --ini uwsgi.ini &

停止

(flask2) [root@root flask]# ps -ef | grep uwsgi
root      7114  6277  0 22:13 pts/1    00:00:00 uwsgi --ini uwsgi.ini
root      7118  6277  0 22:15 pts/1    00:00:00 grep --color=auto uwsgi
(flask2) [root@root flask]# kill -9 7114

4.环境-nginx

4.1安装

4.1.1 yum安装

yum install nginx -y

yum安装失败,未找到nginx包,换使用压缩包编译安装

4.1.2 编译安装

原文:https://www.kuangstudy.com/bbs/1511610238649233410

下载nginx包

下载链接:https://nginx.org/en/download.html

在这里插入图片描述

1.nginx的环境依赖下载

编译工具gcc,一般系统都存在

yum install gcc-c++

pcre正则表达式库

yum install -y pcre pcre-devel

zlib解压和压缩库

yum install -y zlib zlib-devel

OpenSSL安全套接字密码库

yum install -y openssl openssl-devel

2.解压

tar -zxvf nginx-1.18.0.tar.gz 

3.执行configure

./configure

说明:–prefix参数表示把nginx编译到指定目录

如:--prefix=/www/server/nginx/表示编译到/www/server/nginx/目录下

4.编译

make

5.安装

make install

默认安装目录为/usr/local/nginx

查看nginx安装是否成功

在/usr/local/nginx/sbin目录下执行,无报错则启动成功

./nginx

浏览器输入ip:80查看

在这里插入图片描述

如果访问失败,首先检查安全组是否开放80端口,若开放查看防火墙

查看防火墙是否开启

systemctl  status  firewalld

修改iptables防火墙规则,允许访问80

iptables -I INPUT -p tcp --dport 80 -j ACCEPT

4.2配置

普通请求 -> 8001

/static/ -> /home/xxx/data/flask/static


#user  nobody;
worker_processes  1;#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;#pid        logs/nginx.pid;events {worker_connections  1024;
}http {include       mime.types;default_type  application/octet-stream;#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '#                  '$status $body_bytes_sent "$http_referer" '#                  '"$http_user_agent" "$http_x_forwarded_for"';#access_log  logs/access.log  main;sendfile        on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout  65;#gzip  on;upstream flask {server 127.0.0.1:8001;}server {listen       80;listen       [::]:80;server_name  localhost;#charset koi8-r;#access_log  logs/host.access.log  main;#location / {#    root   html;#   index  index.html index.htm;#}location / {uwsgi_pass   flask;include  uwsgi_params;}location /static {alias   /home/xxx/data/flask/static;}#error_page  404              /404.html;# redirect server error pages to the static page /50x.html#error_page   500 502 503 504  /50x.html;location = /50x.html {root   html;}# proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ \.php$ {#    proxy_pass   http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000##location ~ \.php$ {#    root           html;#    fastcgi_pass   127.0.0.1:9000;#    fastcgi_index  index.php;#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;#    include        fastcgi_params;#}# deny access to .htaccess files, if Apache's document root# concurs with nginx's one##location ~ /\.ht {#    deny  all;#}}# another virtual host using mix of IP-, name-, and port-based configuration##server {#    listen       8000;#    listen       somename:8080;#    server_name  somename  alias  another.alias;#    location / {#        root   html;#        index  index.html index.htm;#    }#}# HTTPS server##server {#    listen       443 ssl;#    server_name  localhost;#    ssl_certificate      cert.pem;#    ssl_certificate_key  cert.key;#    ssl_session_cache    shared:SSL:1m;#    ssl_session_timeout  5m;#    ssl_ciphers  HIGH:!aNULL:!MD5;#    ssl_prefer_server_ciphers  on;#    location / {#        root   html;#        index  index.html index.htm;#    }#}}

4.3启动

在/usr/local/nginx/sbin目录下执行,无报错则启动成功

./nginx -s restart

5.部署

使用uwsgi后台启动项目,在浏览器输入url查看

在这里插入图片描述


http://www.ppmy.cn/news/452329.html

相关文章

给我写一份拜尔包含品牌故事以及情怀的介绍

好的,我会写一份关于 Baellerry 的介绍。 Baellerry 是一个专注于高品质钱包、皮具和时尚配件的品牌。该品牌成立于 2013 年,总部位于中国,并已在全球多个国家和地区设有分支机构。 Baellerry 的品牌情怀是以人为本,为消费者提供优…

Bayer域去噪:从信号角度分析位置设置原因

Bayer域去噪:从信号角度分析位置设置原因 Bayer域去噪的ISP位置关于ISP流程中的AWB中参数的说明 Bayer域去噪的ISP位置 首先是关于位置的说明,网上找了好多ISP流程,感觉五花八门,没有一个是当前实际使用的顺序。这里确定位置&…

扯犊子的CPI

最近看了一本关于金融的书,比较通俗,再次勾起了我对金融的兴趣,于是想搞清楚一些之前一知半解的概念,所以,我就先找了一个书中对我感官冲击最大的概念,做了一点点研究,得到的结果并不让人开心&a…

书单来了!大厂的技术牛人在读什么:腾讯篇

点击蓝色“程序员书单”关注我哟 加个“星标”,每天带你看好文,读好书! ​ 腾讯技术团队推荐书单 《应用密码学:协议、算法与 C 源程序》 [美] Bruce Schneier ​ 密码学的应用领域远远不只是编码和解码信息,要了…

灰度相机与彩色相机的成像原理

无论是CCD还是CMOS,其原理都是将光子转换为电子,其中光子数目与电子数目成比例。对每个像素,统计其电子数目就形成反映光线强弱的灰度图像。                                       图1. 根据电子数目…

【AI数学原理】概率机器学习(三):拉普拉斯修正

朴素贝叶斯分类器需要通过拉普拉斯修正来提高其鲁棒性。 本文需要上一篇博文的基础:【AI数学原理】概率机器学习(二):朴素贝叶斯分类器 为什么不用拉普拉斯修正的NB分类器鲁棒性不理想呢?主要还是疏于考虑这种情况&am…

Bayer阵列的由来及原理简介

Bayer阵列是什么? 所谓拜耳阵列指的是CCD或者CMOS器件作为光传感器的时候,采集数字图像时用到的一种常见的方法。 下图为一种常见的BGGR的阵列排布方式: Bayer阵列发明者 Bayer阵列的发明者——柯达公司工程师Bryce Bayer。 为什么需要Baye…

程序员架构修炼之道:如何设计“易理解”的系统架构?

前言 尽管“可靠性”有时被视为“可用性”的同义词,但这一属性实际上意味着系统的所有关键设计的保证:可用性、持久性和安全不变量等。 我们构建易于理解的系统的主要指导思想是,使用清晰的、有约束的组件来构造系统。其中一些组件可能构成其可信计算的基础,因此可以集中解…