aaa

使用nginx+ uwsgi进行项目部署

1.准备django项目 NB_crm

2.安装虚拟环境,在虚拟环境下,安装uwsgi,进行部署
workon nbcrm
pip3 install -i https://pypi.douban.com/simple uwsgi

3.利用uwsgi运行一个python web脚本文件

    新建一个py脚本文件,写入如下内容
    def application(env, start_response):
        start_response('200 OK', [('Content-Type','text/html')])
        return [b"Hello World"] # python3
    启动命令如下
    uwsgi --http :8000 --wsgi-file test.py      --http参数意思是,基于http协议运行 在 8000端口
        --socket  
        --wsgi-file  找到wsgi.py文件 

4.利用uwsgi运行django项目

(以参数形式运行项目),(还有以配置文件形式运行,把运行的参数写入到一个文件里面,基于这个文件运行)
(以参数形式运行项目)
(以参数形式运行项目)
命令如下 
uwsgi --http :8088 --module mysite.wsgi
    --module  找到django项目的第二层里面的wsgi.py文件
    
uwsgi默认不支持静态文件解析,使用nginx去解析静态文件 

5.热加载django项目,uwsig自动重启django

uwsgi --http :9000 --module NBcrm.wsgi --py-autoreload=1

uwsgi --http :9000 --module luffy_permission.wsgi --py-autoreload=1

6.基于配置文件的形式,运行nbcrm

# uwsgi的配置文件
touch uwsgi.ini  在第一层NBcrm里
[uwsgi]
# Django-related settings
# the base directory (full path)
#项目的绝对路径,定位到nbcrm的第一层
chdir           = /root/NBcrm
# Django's wsgi file
# 找到项目第二层的wsgi文件
module          = NBcrm.wsgi
# the virtualenv (full path)
# 找到虚拟环境的绝对路径
home            = /root/Envs/nbcrm
# process-related settings
# master
# 主进程
master          = true
# maximum number of worker processes
# 开启uwsgi的多进程数,根据cpu核数来定义
processes       = 16
# the socket (use the full path to be safe
# 基于socket链接运行crm,只有与nginx结合的时候,才使用socket形式
socket          = 0.0.0.0:8000
# 当你没用nginx,调试项目的时候,使用http形式 
#http     =  0.0.0.0:8000
# ... with appropriate permissions - may be needed
# chmod-socket    = 664
# clear environment on exit
vacuum          = true

#如果你使用了supervisor,请注释掉这个参数
#守护进程在后台运行,且将日志信息,输出到uwsgi.log日志中
#daemonize = uwsgi.log

启动配置文件的命令(在有uwsgi.ini的文件中)或者最好加绝对路径(写绝对路径的时候要注意准确)
/root/Envs/nbcrm/bin/uwsgi --ini uwsgi.ini

!ps命令

从最好往上来翻 有关history 里面相关的或者数字 !

前台后台两个端口

​ uwsgi 夯住了(输任何的都无法了),

然后前台运行,再开一个窗口

7.配置nginx,结合uwsgi,以及处理静态文件的配置
nginx.conf请求转发配置如下

server {
    listen       80;
    server_name  localhost;
        location / {
        include uwsgi_params;
        uwsgi_pass 0.0.0.0:8000;

    }
}

nginx处理crm的静态文件方式

    1.修改django的settings.py静态文件
    添加如下参数
        # Static files (CSS, JavaScript, Images)
        # https://docs.djangoproject.com/en/1.11/howto/static-files/
        STATIC_ROOT='/opt/s20static'
        STATIC_URL = '/static/'
        STATICFILES_DIRS = [
            os.path.join(BASE_DIR,'statics'),
        ]
2.执行命令,收集crm的静态文件
     python3  /opt/NBcrm/manage.py collectstatic
     3.配置nginx的location路径匹配,找到crm这些静态文件
     在nginx.conf中找到server{}标签,添加如下参数
     #当我的请求url是 192.168.16.142:80/static/xxxxxxxx 
        location /static {
            alias  /opt/s20static/;
        }2.执行命令,收集crm的静态文件
     python3  /opt/NBcrm/manage.py collectstatic
    4.启动nginx,访问nginx的80,是否可以转发到crm

虚拟环境工具

virtualenv

python的虚拟环境工具vir + wrapper 这两个工具只会影响python相关的东西,不会影响操作系统以及数据库等的东西

pip3 python3 可能会影响,优先用虚拟环境的

which nginx 不是虚拟环境的路径下的 不影响

错误2

配置了静态文件 弄不出来

然后看亮哥的,发现自己没有nginx -t nginx -s reload

8.使用supervisor进程管理工具,管理你的项目
其实,supervisor就是在帮你执行命令而已
使用supervisor管理进程,这个进程不得在后台运行,
退出虚拟环境,在物理环境下安装supervisor

supervisor

在物理环境下安装supervisor ,然后他管理uwsgi

1安装 pip3 install -i https://pypi.douban.com/simple

2创建配置 echo_supervisord_conf > /etc/supervisor.conf 输出配置文件信息 重定向到conf
3编辑配置,写入管理nbcrm任务参数
vim /etc/supervisor.conf

[program:s20nbcrm]
command=/root/Envs/nbcrm/bin/uwsgi --ini /root/opt/NBcrm/uwsgi.ini
stopasgroup=true    #默认为false,进程被杀死时,是否向这个进程组发送stop信号,包括子进程 
killasgroup=true    #默认为false,向进程组发送kill信号,包括子进程 

4.启动supervisor,去管理uwsgi
supervisord -c /etc/supervisor.conf

5.通过supervisorctl管理命令,管理uwsgi supervisorctl -c /etc/supervisor.conf

命令如下
status all
start s20nbcrm
stop s20nbcrm
stop all

错误3

 写绝对路径了 配置文件形式的都要写绝对路径,否则会出现各种坑 (是在那个路径下吗?)

command=/root/Envs/nbcrm/bin/uwsgi --ini /root/opt/NBcrm/uwsgi.ini

本质

看看问题出在那里?
是啥? 封装了路径,拿出去对吗? 不对
执行命令,检验正确之后,然后在加入到文件

错误4

nginx 访问不到 ,访问的80 端口,又没想,就去问。
没起端口 的错误

修改域名

C:\Windows\System32\drivers\etc  下的hosts 文件
192.168.230.129  www.py.com  两个都可已登录了

linux出现swp交换文件,是因为vim异常退出,或者有人同时在操作一个文件,linux系统保护机制,会生成swp文件,删除即可

conf.swp rm -rf conf.swp

配置文件形式

nginx.conf
my.cnf
my.ini
uwsgi.ini
*.xml
*.json

pkill -9 uwsgi
pkill -9 super 也可以杀死进程

上一篇:Django,nginx,gunicorn,主管:UnicodeEncodeError-上载非拉丁命名文件时


下一篇:OpenMP基础----以图像处理中的问题为例