iisnode encountered an error when processing the request

后端 未结 5 1652
时光说笑
时光说笑 2021-01-17 09:49

I\'m trying to check angularjs app with a server side written in node js and this is an error i get when i run in by webmatrix

iisnode encountered an

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-17 10:17

    It looks like your iisnode cannot write its log file, perhaps because it does not have write permissions. If you have access to to the server then you can check inside the app's folder for an iisnode folder, that is where iisnode tries to write its logs by default.

    Until you get this log info you are stuck because the 500 error you are seeing only tells you that the error has occurred on the server somewhere. You need the logs to give you the info you need to proceed.

    The only other alternative is to run the whole thing locally and use something like node-inspector (I use grunt-node-inspector) to debug into the nodeJS code to see what is happening.

提交回复
热议问题