django1.11.6+nginx1.12.2+uwsgi2.0.15 部署

简介:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
安装python3.6
 
yum -y  install  xz wget gcc  make  gdbm-devel openssl-devel sqlite-devel zlib-devel  bzip2 -devel
wget http: //mirrors .sohu.com /python/3 .6.3 /Python-3 .6.3. tar .xz
tar  -xf Python-3.6.3. tar .xz
cd  Python-3.6.3
 
 
. /configure  -- enable -shared -- enable -loadable-sqlite-extensions --with-zlib   
. /configure  -- enable -optimizations
make  &&  make  install
 
 
mv  /usr/bin/python  /usr/bin/python2 .7
ln  -s  /usr/local/bin/python3  /usr/bin/python
 
 
vim  /etc/ld .so.conf
/usr/local/lib
include ld.so.conf.d/*.conf
/sbin/ldconfig
 
python –V
 
vim  /usr/bin/yum
#!/usr/bin/python2.7
 
 
修改源
/root/ .pip /pip .conf
[global]
index-url = http: //pypi .douban.com /simple
trusted-host = pypi.douban.com
 
 
 
  
pip3      install  uwsgi  django
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
命令启动: uwsgi --http :8001 --chdir  /opt/autoops/  -w autoops.wsgi --static-map= /static =static
 
 
 
 
 
vim      uwsgi.ini
[uwsgi]
# 项目目录
chdir= /opt/autoops/
# 指定项目的application
module=autoops.wsgi:application
# 进程个数
workers=8
pidfile= /opt/autoops/script/uwsgi .pid
# 指定IP端口
#http=0.0.0.0:8003    ##可以不启用,利用socket文件,如果只是测试,需要启用
# 指定静态文件
static-map= /static = /opt/autoops/static
# 启动uwsgi的用户名和用户组
uid=root
gid=root
# 启用主进程
master= true
# 自动移除unix Socket和pid文件当服务停止的时候
vacuum= true
# 序列化接受的内容,如果可能的话
thunder-lock= true
# 启用线程
enable -threads= true
# 设置自中断时间
harakiri=30
# 设置缓冲
post-buffering=4096
# 设置日志目录
daemonize= /opt/autoops/script/uwsgi .log
# 指定sock的文件路径
socket= /opt/autoops/script/uwsgi .sock
1
2
3
uwsgi --ini uwsgi.ini    # 启动uwsgi配置
uwsgi --stop script /uwsgi .pid  # 关闭uwsgi
uwsgi --reload  script /uwsgi .pid   #重新加载


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
安装nginx,可参看   修改 nginx.conf
 
   root          /opt/autoops ;
   
   
   
     location / {
#       uwsgi_pass 127.0.0.1:8003;
         include uwsgi_params;
         uwsgi_connect_timeout 30;
         uwsgi_pass unix: /opt/autoops/script/uwsgi .sock;
     }
     location  /static/  {
             alias   /opt/autoops/static/ ;
             index  index.html index.htm;
     }
     
     
     
启动测试



附:安装mysql  可以参考 http://hequan.blog.51cto.com/5701886/1982428










本文转自 295631788 51CTO博客,原文链接:http://blog.51cto.com/hequan/1982769,如需转载请自行联系原作者
目录
打赏
0
0
0
0
235
分享
相关文章
nginx部署vue项目
本文介绍了将Vue项目部署到Nginx的步骤,包括构建Vue项目、上传dist文件夹到服务器、安装Nginx、配置Nginx代理静态文件以及重启Nginx,确保了Vue应用可以通过域名或IP地址访问。
305 1
linux安装nginx和前端部署vue项目(实际测试react项目也可以)
本文是一篇详细的教程,介绍了如何在Linux系统上安装和配置nginx,以及如何将打包好的前端项目(如Vue或React)上传和部署到服务器上,包括了常见的错误处理方法。
1797 0
linux安装nginx和前端部署vue项目(实际测试react项目也可以)
k8s基础使用--使用k8s部署nginx服务
本文介绍了Kubernetes中核心概念Deployment、Pod与Service的基本原理及应用。Pod作为最小调度单元,用于管理容器及其共享资源;Deployment则负责控制Pod副本数量,确保其符合预期状态;Service通过标签选择器实现Pod服务的负载均衡与暴露。此外,还提供了具体操作步骤,如通过`kubectl`命令创建Deployment和Service,以及如何验证其功能。实验环境包括一台master节点和两台worker节点,均已部署k8s-1.27。
400 1
docker应用部署---nginx部署的配置
这篇文章介绍了如何使用Docker部署Nginx服务器,包括搜索和拉取Nginx镜像、创建容器并设置端口映射和目录映射,以及如何创建一个测试页面并使用外部机器访问Nginx服务器。
部署Django应用:使用Gunicorn和Nginx构建高效的生产环境
部署Django应用:使用Gunicorn和Nginx构建高效的生产环境
337 0
saltstack批量部署并配置nginx
最近应别的部门要求研究了一下saltstack,感觉很好用哈!虽然我现在生产环境用的puppet,想以后逐渐用这个去替代puppet,至于ansible还没研究,以后有时间再看看吧! 一、Saltstack是什么? saltstack是一种全新的基础设施管理方式,部署轻松,在几分钟内可运行起来,扩展性好,很容易管理上万台服务器,速度够快,服务器之间秒级通讯。
1882 0
Nginx中配置HTTP2协议的方法
Nginx中配置HTTP2协议的方法
299 7