gpt4 book ai didi

python - uWSGI [+ nginx] 文件描述符错误(没有这样的文件或目录)

转载 作者:行者123 更新时间:2023-12-01 06:00:04 31 4
gpt4 key购买 nike

我正在尝试为 Django 项目配置 uWSGI。不幸的是,当我运行 uwsgi 可执行文件时,它失败并出现一个奇怪的错误:

$ bin/uwsgi -s sock/uwsgi.sock --chdir testit --vacuum \
--env DJANGO_SETTINGS_MODULE=testit.testit.settings --wsgi-file testit/wsgi.py --master
*** Starting uWSGI 1.2.3 (32bit) on [Mon Jun 4 17:14:52 2012] ***
compiled with version: 4.7.0 20120414 (prerelease) on 04 June 2012 16:20:49
detected number of CPU cores: 2
current working directory: /home/miki/sites/testit
detected binary path: /home/miki/sites/testit/bin/uwsgi
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
bind(): No such file or directory [socket.c line 107]

我完全不知道该怎么做...我尝试使用 ulimit 但没有成功。

最佳答案

似乎 chdir 命令是在其他命令之前执行的,因此如果您使用相对路径,它无法找到文件。尝试在参数中使用完整路径:

bin/uwsgi -s $PWD/sock/uwsgi.sock --chdir testit --vacuum \
--env DJANGO_SETTINGS_MODULE=testit.testit.settings \
--wsgi-file $PWD/testit/wsgi.py --master

关于python - uWSGI [+ nginx] 文件描述符错误(没有这样的文件或目录),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10883744/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com