——2018.11.9
gunicorn
进入宿主机项目目录下
安装virtualenv: yum install -y python-virtualenv
创建虚拟环境: virtualenv venv (venv为虚拟环境名称,可自行加上目录)
激活虚拟环境: source venv /bin/activate
在虚拟环境中安装gunicorn和flask:
(venv) $ pip install gunicorn
(venv) $ pip install flask
在项目虚拟环境目录下执行: pip install -r requirements.txt 安装项目依赖
使用gunicorn执行项目:
gunicorn run:app
* run.py是我的项目的启动文件, app是Flask运行实例。
以上命令会在宿主机的 http://127.0.0.1:8000端口启动应用。此时,只接受本地请求,若想在同局域网下可访问,须修改命令为:
gunicorn run:app -p 0.0.0.0:8000 。若想在后台运行,可以加上-d参数。
关闭gunicorn进程:
查看gunicorn主进程pid:
pstree -ap | grep gunicorn
找到树形目录的根目录的主进程号,使用 kill -9 进程号 命令关闭该进程。
nginx部分
系统环境:
centos
下载依赖项及必要组件:
yum install-y make cmake gcc gcc-c++
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
下载安装nginx
wget http://nginx.org/download/nginx-1.12.2.tar.gz
* 可以根据需要下载不同版本。官网:http://nginx.org/en/download.html
配置文件默认安装目录: /usr/local/nginx/conf/nginx.conf
解压
tar zxvf nginx-1.12.2.tar.gz && cd nginx-1.12.2
编译配置
./configure && make && make install
执行完本命令将会在 /usr/local/nginx 生成相应的可执行文件、配置、默认站点等文件
创建全局命令
ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx
常用命令:
在nginx.exe目录,打开命令行工具,用命令 启动/关闭/重启nginx
nginx : 启动nginx
nginx -s reload :修改配置后重新加载生效
nginx -s reopen :重新打开日志文件
nginx -t -c /path/to/nginx.conf 测试nginx配置文件是否正确
关闭nginx:
nginx -s stop :快速停止nginx
nginx -s quit :完整有序的停止nginx
如果遇到报错:
bash: nginx: command not found
有可能是你再linux命令行环境下运行了windows命令,
如果你之前是允许 nginx -s reload报错, 试下 ./nginx -s reload
或者 用windows系统自带命令行工具运行
查看
执行curl http://localhost:80
查看nginx进程
ps -ef | grep nginx
局域网内访问
在局域网内访问,需修改 /usr/local/nignx/conf/nginx.conf文件,将http server部分的server_name修改为宿主机的域名或者是 ip地址+listen端口。如:
修改nginx.conf然后执行 nginx -s reload重新加载nginx配置并启动,即可在同局域网下其他地址访问。如出现无法连接,请检查客户端防火墙及宿主机防火墙设置。
centos7自带的防火墙的相关指令:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
systemctl status firewalld.service #查看firewall的状态
nginx欢迎页nginx配置完成后,为实现我们Flask项目的请求通过nginx转发,须修改 /usr/local/nginx/nginx.conf 中的http server部分中的location部分中添加 gunicorn启动应用的地址及消息头设置:
server {
listen 80;
server_name 192.168.111.217:80;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
* http://127.0.0.1:8000 是gunicorn运行的ip+端口
修改完成后,执行 nginx -s reload重新加载nginx,在同局域网下的浏览器中访问192.168.111.217:80 端口,即可通过location中配置的http://127.0.0.1:8000访问我们的flask应用。
* 在同宿主机下的mysql、redis等连接可直接使用 127.0.0.1 访问。
网友评论