runxc1 Bret Ferrier
runxc1 Bret Ferrier

Reputation: 8233

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

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 now and then without any new code I am now getting lots of socket exceptions starting like the one below.

An attempt was made to access a socket in a way forbidden by its access permissions.

The website intermittently gets the error when connecting to Redis, SQL Azure and MongoDB which makes no sense. I changed the Pricing Tier for the site which would move the website from one VM to another behind the scenes and the errors went away for a couple days and have returned again.

I just now changed the site from an S3 to an S2 (making it smaller) and they have gone away but I don't know for how long. How do I fix this? Does Azure limit the number of sockets for a site? Is there some setting on a site in Azure that could cause this?

Upvotes: 24

Views: 28455

Answers (6)

Paul Trotter
Paul Trotter

Reputation: 77

In my case, I had correctly created the relay and the Hybrid Connection, but I had failed to add my new Hybrid Connection to my App Service's configuration. Once I went to the Networking -> Hybrid connections settings of my App Service and added the Hybrid Connection, everything started working.

Upvotes: 0

Henrik Gering
Henrik Gering

Reputation: 1871

I have faced this issue today. I had a function app configured, using a hybrid connection.

The hybrid connection was configured to use http, while my azure functions app was configured to use https.

Changing the app to use http, solved the issue. (I guess changing the hybrid connection to https would also resolve the issue.)

Upvotes: 0

GeorgiG
GeorgiG

Reputation: 1103

I had the same problem and there was a very trivial reason for it: My ApiUrl connectionString replacement wasn't being completed successfully. That meant that my Webapp was trying to link with a localhost app, which would be forbidden.

In essence: troubleshoot your Configuration variables before making any conclusions.

Upvotes: 8

sirdank
sirdank

Reputation: 3571

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.

Upvotes: 0

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.

Upvotes: 3

Freek
Freek

Reputation: 1516

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/

Upvotes: 5

Related Questions