Azure website keeps throwing the error “An attempt was made to access a socket in a way forbidden by its access permissions”

后端 未结 3 536
再見小時候
再見小時候 2021-01-07 23:16

I have a website running as a web app on a dedicated Azure plan. It connects to a Redis, SQL Azure and a MongoDB backend. The website has been running fine for weeks no

3条回答
  •  天涯浪人
    2021-01-07 23:29

    I faced this issue because I added to the web app a path mapping and new application. The new asp.net core application had different versions of the dependencies which it shared with the existing one.

    Something about that was causing neither of them to be able to run. When I synchronized my dependencies between projects, all the applications on my app service began working correctly again.

提交回复
热议问题