在 /home/download下下载压缩包
wget https://nginx.org/download/nginx-1.12.2.tar.gz
解压缩html
tar zxvf nginx-1.12.2.tar.gz ./configure make make install
添加环境变量:python
vim ~/.bashrc //添加 #NGINX export NGINX_HOME=/usr/local/nginx export PATH=$PATH:$NGINX_HOME/sbin source ~/.bashrc//激活
一些nginx相关命令nginx
nginx -s stop //重启nginx nginx //启动 pkill -9 nginx //强制中止
修改nginx配置git
//路径 vim /usr/local/nginx//conf/nginx.conf 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; server { listen 80; server_name xxx.xxx.xxx.xxx; #charset koi8-r; access_log /home/web/JulyNovel/logs/access.log; error_log /home/web/JulyNovel/logs/error.log; location / { include uwsgi_params; uwsgi_pass localhost:5000; uwsgi_param UWSGI_PYHOME /root/anaconda3/envs/WebServer; uwsgi_param UWSGI_CHDIR /home/Web/JulyNovel; uwsgi_param UWSGI_SCRIPT manage:app; } #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; }
先安装uwsgi
pip install uwsgi
在你的项目根目录下建立一个配置文件uwsgiconfig.ini(uwsgi支持多种配置文件格式,xml,ini,json等)github
[uwsgi] socket = 127.0.0.1:8001 //启动程序时所使用的地址和端口,一般在本地运行flask项目, //地址和端口是127.0.0.1:5000, //不过在服务器上是经过uwsgi设置端口,经过uwsgi来启动项目, //也就是说启动了uwsgi,也就启动了项目。 chdir = /home/www/ //项目目录 wsgi-file = manage.py //flask程序的启动文件,一般在本地是经过运行 // python manage.py runserver 来启动项目的 callable = app //程序内启用的application变量名 processes = 4 //处理器个数 threads = 2 //线程个数 stats = 127.0.0.1:9191 //获取uwsgi统计信息的服务地址
启动、中止uwsgi
前提:yum install psmisc
新建manage_uwsgi.sh
sh manage_uwsgi.sh stop
web
#!/bin/bash if [ ! -n "$1" ] then echo "Usages: sh uwsgiserver.sh [start|stop|restart]" exit 0 fi if [ $1 = start ] then psid=`ps aux | grep "uwsgi" | grep -v "grep" | wc -l` if [ $psid -gt 4 ] then echo "uwsgi is running!" exit 0 else uwsgi /etc/uwsgi.ini echo "Start uwsgi service [OK]" fi elif [ $1 = stop ];then killall -9 uwsgi echo "Stop uwsgi service [OK]" elif [ $1 = restart ];then killall -9 uwsgi /usr/bin/uwsgi --ini /etc/uwsgi.ini echo "Restart uwsgi service [OK]" else echo "Usages: sh uwsgiserver.sh [start|stop|restart]" fi
保存配置文件,咱们能够经过键入 uwsgi uwsgiconfig.ini
来启动uwsgi。json
在 /home/download下下载压缩包
wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh
·bash Anaconda3-5.0.1-Linux-x86_64.sh·flask
经常使用命令vim
conda env list // conda create --name // source activate <evn-name>
Anaconda详细教程bash
localhost:5000
主从共四台服务器配置好Python uWSGI Nginx环境后,额外为主服务器配置MariaDB和Redis环境:
别忘了差别化配置config.py
好了,能够开始愉快地Spider了
xxx.xxx.xxx.xx/missionStart
顺便,任何一台服务器均可以访问Graphql接口测试文档:
xxx.xxx.xxx.xx/graphql