请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

Centos7部署到最后一步,执行uwsgi -i conf/uwsgi.ini 时候,貌似卡住了读不到配置

https://img1.sycdn.imooc.com//szimg/59f9df76000110fe06660146.jpg

这里没有后台执行,但是执行命令后一直没动静

https://img1.sycdn.imooc.com//szimg/59f9e0770001a49010700911.jpg

所以我又打开了一个窗口看日志文件,发现本应该在执行命令后出现的创建线程,现在跑到日志里了,由于不懂Nginx和是uWSGI,也查了好久,但还是没有找到原因。

https://img1.sycdn.imooc.com//szimg/59f9e56d0001f52011120365.jpg

通过ps也可以看到已经存在了10个进程了

但是用10.25.0.128访问的时候,却是默认的nginx的页面。

https://img1.sycdn.imooc.com//szimg/59f9e5cb0001650206660235.jpg

不知道哪里出问题了。希望老师不忙的时候解答下!谢谢了!

------------------------2017/11/5日分割线------------------------

https://img1.sycdn.imooc.com//szimg/59fe7b700001680109530759.jpg

这个是Nginx的配置。

正在回答 回答被采纳积分+3

3回答

慕粉2125289011 2018-02-28 22:44:53

解决了没~我也遇到了这个问题~~~~~~

1 回复 有任何疑惑可以回复我~
提问者 懵逼工程师 2017-11-06 23:34:19

https://img1.sycdn.imooc.com//szimg/5a0080e50001680109530759.jpg

上传到这里了

0 回复 有任何疑惑可以回复我~
bobby 2017-11-02 18:21:11

uwsgi启动看起来没有问题 重启nginx了没有?, 你再把你的nginx配置帖上来 我看看

0 回复 有任何疑惑可以回复我~
  • 提问者 懵逼工程师 #1
    tream component nginx needs to connect to
    upstream django {
    # server unix:///path/to/your/mysite/mysite.sock; # for a file socket
    server 127.0.0.1:8000; # for a web port socket (we'll use this first)
    }
    # configuration of the server
    
    server {
    # the port your site will be served on
    listen      80;
    # the domain name it will serve for
    server_name 10.25.0.128 www.mxonline.com; # substitute your machine's IP address or FQDN
    charset     utf-8;
    
    # max upload size
    client_max_body_size 75M;   # adjust to taste
    
    # Django media
    location /media  {
        alias /mnt/Mxonline/media;  # 指向django的media目录
    }
    
    location /static {
        alias /mnt/Mxonline/static; # 指向django的static目录
    }
    
    # Finally, send all non-media requests to the Django server.
    location / {
        uwsgi_pass  127.0.0.1:8000;
        include     uwsgi_params; # the uwsgi_params file you installed
    }
    }
    回复 有任何疑惑可以回复我~ 2017-11-05 10:44:37
  • 提问者 懵逼工程师 #2
    这里回复好像没有格式,我把图片粘问题最下面了
    回复 有任何疑惑可以回复我~ 2017-11-05 10:45:25
  • bobby 回复 提问者 懵逼工程师 #3
    你直接添加回答 里面可以截图我看看 这样看起来完全看不了
    回复 有任何疑惑可以回复我~ 2017-11-06 12:14:58
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信