Adding modules to node

Discussion in 'Windows / IIS' started by Datatron, Sep 5, 2015.

Tags:
  1. When I run my node program I get this error:

    The node.exe process has not written any information to stderr or iisnode was unable to capture this information. Frequent reason is that the iisnode module is unable to create a log file to capture stdout and stderr output from node.exe. Please check that the identity of the IIS application pool running the node.js application has read and write access permissions to the directory on the server where the node.js application is located. Alternatively you can disable logging by settingsystem.webServer/iisnode/@loggingEnabled element of web.config to 'false'.

    I tried adding this parameter to my web.config file:

    </handlers>
    <iisnode loggingEnabled="false" />
    </system.webServer>

    but that gave me an error when I ran it again. Does anyone know what the above error means and how to correct for it and what is the problem with my web.config xml coding? If I need to give write permissions, which directory do I give permissions and how do I do it?
     
  2. martino

    martino DiscountASP.NET Staff

    Your site already has read and write access by default. You might run into a problem if your ASP.NET Anonymous user run out of web site disk space quota. You can check this in the User/Quota Manager within the control panel. Click on "Edit" next to the user to increase the disk space quota.


    What was the new error message?

    Maybe the false has to False?

    The web.config file is Case sensitive.
     
    mjp likes this.

Share This Page