经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 程序设计 » Django » 查看文章
阿里云ECS服务器部署django的方法
来源:jb51  时间:2019/8/30 9:42:56  对本文有异议

参考

服务器安装的是Centos 系统。

uwsgi是使用pip安装的。

nginx是使用yum install nginx安装。

python 2.7, mysql 5.5使用 yum安装。

它们之间的逻辑关系如下:

the web client <-> the web server <-> the socket <-> uwsgi <-> Django

uswgi负责从Django拿内容,通过socket传给 web server如nginx, 最后显示到 网页浏览器。

在django的项目下,建文件 uswgi.ini,可以不用在uswgi后面写一串选项。

  1. # uwsgi.ini file
  2. [uwsgi]
  3. # Django-related settings
  4. # the base directory (full path)
  5. chdir = /var/www/html/
  6. # Django's wsgi file
  7. module = app.wsgi:application
  8. # process-related settings
  9. # master
  10. master = true
  11. # maximum number of worker processes
  12. processes = 10
  13. # the socket (use the full path to be safe
  14. #socket = 127.0.0.1:8001
  15. socket = /tmp/site.sock
  16. # ... with appropriate permissions - may be needed
  17. chmod-socket = 666
  18. # clear environment on exit
  19. vacuum = true
  20. process = 4
  21. threads = 2

# Django's wsgi file这个对应你自己Django项目的就好。 chdir就是Django的所在目录,和manage.py同一目录。

其他可以默认。

同样建立nginx.conf

  1. # nginx.conf
  2. # the upstream component nginx needs to connect to
  3. upstream django {
  4. server unix:///tmp/site.sock; # for a file socket
  5. #server 127.0.0.1:8001; # for a web port socket (we'll use this first)
  6. }
  7. # configuration of the server
  8. server {
  9. # the port your site will be served on
  10. listen 80;
  11. # the domain name it will serve for
  12. server_name demo.mmm.com; # substitute your machine's IP address or FQDN
  13. charset utf-8;
  14. # max upload size
  15. client_max_body_size 128M; # adjust to taste
  16. # Django media
  17. location /media {
  18. alias /var/www/html/media; # your Django project's media files - amend as required
  19. }
  20. location /static {
  21. alias /var/www/html/static; # your Django project's static files - amend as required
  22. }
  23. # Finally, send all non-media requests to the Django server.
  24. location / {
  25. uwsgi_pass django;
  26. include /var/www/html/uwsgi_params; # the uwsgi_params file you installed
  27. }
  28. }

uwsgi_pass django; 中的django和upstream django 相对应。

两头的socket名字要一样。uwsgi里要改sock的权限为666,默认的664,nginx会连不上,在/var/log/nginx/error.log里可以看到connect is denied。

据说使用socket比端口要好,注意unix://这个前缀,加上后面sock的路径,是3个///,看起来不好看。

无论使用socket还是TCP端口,uwsgi的socket和nginx的server值要对应,否则没法接通路径。

server_name demo.mmm.com; 看文章时,把server_name这个词看成域名,给修改掉,结果nginx启动失败。可以用域名或者IP。

ln -s /var/www/html/nginx.conf /etc/nginx/conf.d/

链接后,这样在conf.d 配置目录里会有Django下建立的nginx.conf,比较方便。

uwsgi_params文件在/etc/nginx下面有,老外说是拷贝到Django目录下,不知道直接使用会有什么区别。

最后:

使用chkconfig nginx on 把nginx设置成自启动服务。

在/etc/rc.local里加一行 uwsgi /var/www/html/uwsgi.ini --uid www --gid www

我没加uid和gid,以root运行uwsgi会被警告的。

原来是打算用apache的,所以有个/var/www/html目录。mod-python报错后,不知道怎么处理。

系统自带Python2.6,mod-python就是调用的2.6。

nginx不能从uwsgi获得数据时,就会输出nginx的默认页面。还会输出 Bad Gateway提示。

linux最大的麻烦是,程序和配置文件分散,装好一个程序,都不知道它在哪里。

以上这篇阿里云ECS服务器部署django的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持w3xue。

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号