错误WebMatrix中运行应用程序的节点(Error running node app in We

2019-07-02 15:47发布

我安装了WebMatrix中,跟着这些指示,我的Windows 7机器上安装IIS 7。

当我点击“运行”来运行我的快递节点的应用程序,浏览器弹出,告诉我

该iisnode模块无法启动node.exe过程。 确保node.exe可执行文件可在指定的位置system.webServer/iisnode/@nodeProcessCommandLine web.config中的元素。 默认情况下,node.exe预计将安装在的%ProgramFiles%\文件夹中的NodeJS x86系统上和的%ProgramFiles(x86)的%\上的NodeJS x64系统的文件夹。

这里是我的web.config:

<configuration>
<system.webServer>

<handlers>
  <!-- indicates that the app.js file is a node.js application to be handled by the iisnode module -->
  <add name="iisnode" path="app.js" verb="*" modules="iisnode" />
</handlers>

<rewrite>
  <rules>
    <!-- Don't interfere with requests for logs -->
    <rule name="LogFile" patternSyntax="ECMAScript" stopProcessing="true">
      <match url="^[a-zA-Z0-9_\-]+\.js\.logs\/\d+\.txt$" />
    </rule>

    <!-- Don't interfere with requests for node-inspector debugging -->
    <rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true">
      <match url="^app.js\/debug[\/]?" />
    </rule>

    <!-- First we consider whether the incoming URL matches a physical file in the /public folder -->
    <rule name="StaticContent">
      <action type="Rewrite" url="public{REQUEST_URI}" />
    </rule>

    <!-- All other URLs are mapped to the Node.js application entry point -->
    <rule name="DynamicContent">
      <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True" />
      </conditions>
      <action type="Rewrite" url="app.js" />
    </rule>
  </rules>
</rewrite>

<!-- You can control how Node is hosted within IIS using the following options -->
<!--<iisnode      
      node_env="%node_env%"
      nodeProcessCountPerApplication="1"
      maxConcurrentRequestsPerProcess="1024"
      maxNamedPipeConnectionRetry="3"
      namedPipeConnectionRetryDelay="2000"      
      maxNamedPipeConnectionPoolSize="512"
      maxNamedPipePooledConnectionAge="30000"
      asyncCompletionThreadCount="0"
      initialRequestBufferSize="4096"
      maxRequestBufferSize="65536"
      watchedFiles="*.js"
      uncFileChangesPollingInterval="5000"      
      gracefulShutdownTimeout="60000"
      loggingEnabled="true"
      logDirectoryNameSuffix="logs"
      debuggingEnabled="true"
      debuggerPortRange="5058-6058"
      debuggerPathSegment="debug"
      maxLogFileSizeInKB="128"
      appendToExistingLog="false"
      logFileFlushInterval="5000"
      devErrorsEnabled="true"
      flushResponse="false"      
      enableXFF="false"
      promoteServerVars=""
     />-->

  <iisnode     
    nodeProcessCommandLine="&quot;%programfiles%\nodejs\node.exe&quot;"
    interceptor="&quot;%programfiles%\iisnode\interceptor.js&quot;" 
  />
</system.webServer>
</configuration>

是什么原因造成的问题,以及如何解决这个问题?

Answer 1:

这是一个常见的问题,如果你已经安装了从网站节点x64版本。 目前IISNode设置为从X32路径node.exe阅读。 您可以更改nodeProcessCommandLine使用的完整路径node.exe你的箱子,或者安装32位的节点安装。 我们正在努力解决这个这样既32/64位将工作开箱。 让我知道这原来不是问题:)



Answer 2:

用的node.js(64位),尝试的web.config的底部放置此

<iisnode watchedFiles="*.js;node_modules\*;routes\*.js;views\*.jade" 
nodeProcessCommandLine="\program files\nodejs\node.exe"/>


Answer 3:

相反,在安装32位版本的,你可以创建一个从32位路径64位的符号链接。

cmd.exe提示:

mklink /D "C:\Program Files (x86)\nodejs" "C:\Program Files\nodejs"

令人惊讶的是,这仍然不是固定的web.config设置似乎被忽略。



文章来源: Error running node app in WebMatrix