Ошибка запуска приложения узла в WebMatrix
Я установил WebMatrix и следовал этим инструкциям, чтобы установить IIS 7 на мой компьютер с Windows 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=""%programfiles%\nodejs\node.exe""
interceptor=""%programfiles%\iisnode\interceptor.js""
/>
</system.webServer>
</configuration>
Что вызывает эту проблему, и как я могу это исправить?
3 ответа
Это распространенная проблема, если вы установили версию узла x64 с веб-сайта. В настоящее время IISNode настроен для чтения node.exe из пути x32. Вы можете либо изменить nodeProcessCommandLine, чтобы использовать полный путь к node.exe на вашем компьютере, либо установить 32-битную версию узла. Мы работаем над исправлением этого, чтобы оба 32/64 бита работали из коробки. Дайте мне знать, если это не проблема:)
С помощью node.js(64-разрядная версия), попробуйте разместить его внизу web.config
<iisnode watchedFiles="*.js;node_modules\*;routes\*.js;views\*.jade"
nodeProcessCommandLine="\program files\nodejs\node.exe"/>
Вместо установки 32-разрядной версии вы можете создать символическую ссылку от 32-разрядного пути к 64-разрядному.
На cmd.exe
незамедлительный:
mklink /D "C:\Program Files (x86)\nodejs" "C:\Program Files\nodejs"
Удивительно, что это все еще не исправлено, и web.config
настройка, кажется, игнорируется.