Ubuntu+Nginx+Python+Flask+Gunicorn+Supervisor

写在前面关于配置网络IP

1、查看当前 IP地址及网卡名等信息

ifconfig

2、在netplan中配置ip

用Vim打开配置文件

sudo vim /etc/netplan/50-cloud-init.yaml

配置完毕后用

sudu netplan apply

具体操作请见另一篇关于《Ubuntu 18.04 Server 配置静态IP》

一、安装及配置virtualenv

sudo apt install virtualenv

二、安装pip

Ubuntu server 18 默认已经安装了python3,所以直接安装pip3

sudo apt install python3-pip

升级pip

pip3 install --upgrade pip

三、建立virtualenv

默认已经安装了python3.6,所以指定。virtualenv默认是对应python2,如果不加参数,会报错。

virtualenv -p /usr/bin/python3.6 venv

激活虚拟环境

source venv/bin/activate

此外,退出虚拟环境的命令为:

deactivate

四、安装flask

用pip安装flask,指令如下:

pip install flask

五、安装Nginx

sudo apt install nginx

安装即可使用,默认页面80端口

六、安装gunicorn

pip install gunicorn

七、安装FTP

1、安装FTP Server

sudo apt install vsftpd

安装即可使用,系统的用户即可登录

2、开启可写权限

先备份vsftpd.conf,然后以管理员身份用vim打开vsftpd.conf。
不同版本的vsftpd的vsftpd.conf目录不同,在本版本就在/etc/下

sudo cp /etc/vsftpd.conf  /etc/vsftpd.conf.bak
sudo vim /etc/vsftpd.conf

vim文本编辑器打开了conf文件,进行配置打开“写”权限。vim操作参看我的另一篇《Vim常用操作》,就此不提。

# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES  #取消前面的#号

3、重启服务

sudo service vsftpd restart

4、小插曲

重启后,用FileZilla连接,总是出现“尝试连接“ECONNREFUSED - 连接被服务器拒绝”失败。”的错误。一开始以为自己配置文件时候出了错误,后来查了网上的资料,发现在FTP客户端上,更改FileZilla的传输协议为 SFTP ,发现居然就OK了。就此不提。

八、测试Flask

1、新建Web根目录

新建了一个wwwroot目录,我习惯就把他和venv平行了。

2、新建项目

新建了一个helloflask项目,上传至wwwroot下

3、运行gunnicorn

gunicorn -w 4 -b 0.0.0.0:8080 main:app
# helloflask是启动文件名,也就是main.py,app是程序中的应用程序名(app = Flask(__name__))

九、配置Nginx

Nginx默认的安装目录为:/etc/nginx/
编辑配置文件conf
/etc/nginx/sites-available/default
在此之前最好备份一下,操作指令如下

sudo cp /etc/nginx/sites-available/default /etc/nginx/sites-available/default.bak

然后用vim编辑它。

sudo vim /etc/nginx/sites-available/default 

在local中增加

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        proxy_pass http://127.0.0.1:8080;
                proxy_redirect     off;
                proxy_set_header   Host                 $http_host;
                proxy_set_header   X-Real-IP            $remote_addr;
                proxy_set_header   X-Forwarded-For      $proxy_add_x_forwarded_for;
                proxy_set_header   X-Forwarded-Proto    $scheme;

    }

Ubantu系统下Nginx启动和停止的命令

sudo service nginx start
sudo service nginx stop

重新启动之后,就可以用http://127.0.0.1/访问到gunicorn的http://127.0.0.1:8080了。

九、Supervisor

1、安装supervisor

pip install supervisor

2、 导出配置文件

随便导到什么地方都可以的,但我习惯把它导导了venv下。

echo_supervisord_conf > supervisor.conf   # 生成 supervisor 默认配置文件

3、编辑配置文件

vim supervisor.conf

在文件的最后增加以下信息:
注意FlaskApp``main``app和路径等,记得要和调整成实际情况


[program:FlaskApp]
command=/home/ubuntu/venv/bin/gunicorn -w 4 -b 0.0.0.0:8080 app:app  ; supervisor启动命令
directory=/home/ubuntu/wwwroot/          ; 项目的文件夹路径
startsecs=0                                                ; 启动时间
stopwaitsecs=0                                          ; 终止等待时间
autostart=true                                            ; 是否自动启动
autorestart=true                                        ; 是否自动重启
stdout_logfile=/home/ubuntu/venv/log/gunicorn.log     ; log 日志,记得要建立log目录
stderr_logfile=/home/ubuntu/venv/log/gunicorn.err      ; 错误日志,记得要建立log目录

4 、启动Supervisor

supervisord -c supervisor.conf

supervisor的基本使用命令

supervisord -c supervisor.conf                             通过配置文件启动supervisor
supervisorctl -c supervisor.conf status                    察看supervisor的状态
supervisorctl -c supervisor.conf reload                    重新载入 配置文件
supervisorctl -c supervisor.conf start [all]|[appname]     启动指定/所有 supervisor管理的程序进程
supervisorctl -c supervisor.conf stop [all]|[appname]      关闭指定/所有 supervisor管理的程序进程

supervisor 还有一个web的管理界面,可以激活。具体如下:

[inet_http_server]         ; inet (TCP) server disabled by default
port=127.0.0.1:9001        ; (ip_address:port specifier, *:port for all iface)
username=user              ; (default is no username (open server))
password=123               ; (default is no password (open server))

[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL  for a unix socket
serverurl=http://127.0.0.1:9001 ; use an http:// url to specify an inet socket
username=user              ; should be same as http_username if set
password=123                ; should be same as http_password if set
;prompt=mysupervisor         ; cmd line prompt (default "supervisor")
;history_file=~/.sc_history  ; use readline history if available

其他命令

有时候会出现服务占用的莫名问题,我自己也没搞清楚,但查了资料,可以运行下述命令断开连接,然后再运行即可。

sudo unlink /tmp/supervisor.sock
sudo unlink /var/run/supervisor.sock

十、设置为开机自启动

目前每次重启服务器后,还需要
1、激活venv
2、运行supervisor 
我想着能够开机自动启动,直接运行该多好啊。
不过还没学会,容我偷会儿懒。
等我学会了再和大家分享。

—— 最后更新于2020.03.28 北京

你可能感兴趣的:(Ubuntu+Nginx+Python+Flask+Gunicorn+Supervisor)