Hi everyone, I’m receiving an error in the Umbraco log file, not really sure why...
The website is working ok, the errors don’t seem to effect the site.
Any help or pointers much appreciated.
ERROR Umbraco.Web.Scheduling.KeepAlive - Failed (at "https://#############").
System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond ip ########
at System.Net.Sockets.Socket.InternalEndConnect(IAsyncResult asyncResult)
at System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult)
at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
--- End of inner exception stack trace ---
Is the website behind a load balancer? If not, you might not need to manually set the umbracoApplicationUrl at all as per documentation:
umbracoApplicationUrl: defines the Umbraco application url, i.e. how the server should reach itself. By default, Umbraco will guess that url from the first request made to the server. Use that setting if the guess is not correct (because you are behind a load-balancer, for example). Format is: "http://www.mysite.com/umbraco" i.e. it needs to contain the scheme (http/https), complete hostname, and Umbraco path.
https://our.umbraco.com/documentation/reference/config/umbracosettings/#web-routing
Scheduled Publishing
Hi everyone, I’m receiving an error in the Umbraco log file, not really sure why...
The website is working ok, the errors don’t seem to effect the site.
Any help or pointers much appreciated.
ERROR Umbraco.Web.Scheduling.KeepAlive - Failed (at "https://#############"). System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond ip ######## at System.Net.Sockets.Socket.InternalEndConnect(IAsyncResult asyncResult) at System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult) at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception) --- End of inner exception stack trace ---
Do I need to change umbracoApplicationUrl to point to the site private IP address?
something like this....
umbracoApplicationUrl="https://#########">
change to
umbracoApplicationUrl="192.168.177.5">
Is the website behind a load balancer? If not, you might not need to manually set the umbracoApplicationUrl at all as per documentation:
The solution was to update the host file mapping the server private IP address to the domain name :)
is working on a reply...