I have an ASP.NET Core web application running on Windows Server 2012 R2 and IIS 8.5. IIS uses a pair of web.config configuration variables to start up the application. This is the relevant web.config line:
<aspNetCore processPath="dotnet" arguments=".\MyWebsite.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" />
The processPath
variable is the command to run, and the arguments
variable specifies the arguments to pass. dotnet.exe
is installed when adding the ASP.NET Core runtime to the server. It is located in directory C:\Program Files\dotnet
. This path is in the server's system PATH
variable and the user context executing the command (the IIS application pool user) has read/execute permission for that path.
When I run my application I get an IIS 502.5 error. The Windows logs report the following:
Application 'MACHINE/WEBROOT/APPHOST/MYWEBSITE' with physical root 'C:\Sites\MyWebsite\' failed to start process with commandline 'dotnet .\MyWebsite.dll', ErrorCode = '0x80004005 : 80008083.
However, if I change the web.config to specify the full path to the executable (i.e. C:\Program Files\dotnet\dotnet.exe
rather than dotnet
) then the application runs fine.
So my assumption is that for some reason IIS cannot access the system environment variable PATH
. Can anyone suggest a resolution? I've restarted the server since installing the ASP.NET Core runtime.