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

后端 未结 3 515
再見小時候
再見小時候 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.

    0 讨论(0)
  • 2021-01-07 23:34

    I was getting the same error in the last few weeks. To fix that i deleted my website from azure and i redeployed using a different name. I know it is weird but when i deleted from azure and redeployed using the same name i got the same error again.

    0 讨论(0)
  • 2021-01-07 23:35

    Indeed, it does limit the amount of sockets. As far as I know, this isn't documented anywhere official. I do, however, have a blog post on this here: http://www.freekpaans.nl/2015/08/starving-outgoing-connections-on-windows-azure-web-sites/

    0 讨论(0)
提交回复
热议问题