HTTP错误500.0-内部服务器错误无法将FastCGI进程放置在JobObject中。尝试禁用应用程序池CPU限制功能

时间:2018-12-10 19:39:40

标签: python django iis application-pool wfastcgi

我正在尝试使用wfastcgi在IIS服务器上运行Django项目。我不断收到此错误。我曾尝试调整应用程序池的CPU限制设置,但此错误仍在发生。如何完全禁用CPU限制功能?

我的配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <handlers>
      <add name="Python FastCGI"
           path="*"
           verb="*"
           modules="FastCgiModule"
           scriptProcessor="C:\users\a0232200\python36\python.exe|c:\users\a0232200\python36\lib\site-packages\wfastcgi.py"
           resourceType="Unspecified"
           requireAccess="Script" />
    </handlers>
  </system.webServer>

  <appSettings>
    <!-- Required settings -->
    <add key="WSGI_HANDLER" value="project.wsgi.application" />
    <add key="PYTHONPATH" value="C:\inetpub\wwwroot\project" />

  </appSettings>
</configuration>

我已授予对与Python36目录绑定的应用程序池的读取和执行访问权限。我已经读过wfastcgi和cpu限制是互斥的,但是错误提示我需要禁用限制功能。

enter image description here

enter image description here

0 个答案:

没有答案