Umbraco hangs - Log says "System.Net.WebException: Unable to connect to the remote server"
My Umbraco installation get hang sometimes and When I looked into log this is what I can see
2017-06-27 23:16:49,196 [P2344/D4/T17] ERROR Umbraco.Web.Scheduling.KeepAlive - Failed (at "https://{mydomain}:443/umbraco").
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 {MyIp}:443
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 ---
at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)
--- End of inner exception stack trace ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Umbraco.Web.Scheduling.KeepAlive.<PerformRunAsync>d__4.MoveNext()
I am using Umbraco Scheduler functionality and this is how it looks.
<scheduledTasks>
<!-- add tasks that should be called with an interval (seconds) -->
<task log="true" alias="wbshopcron" interval="10" url="https://mydomain/cronjobs"/>
<task log="true" alias="sitemapcron" interval="1440" url="https://mydomain/sitemapcronjob"/>
I am using HTTPS for my site and this is how redirects are handled inside web config
Umbraco hangs - Log says "System.Net.WebException: Unable to connect to the remote server"
My Umbraco installation get hang sometimes and When I looked into log this is what I can see
I am using Umbraco Scheduler functionality and this is how it looks.
I am using HTTPS for my site and this is how redirects are handled inside web config
Some other redirect rules are also there inside Umbraco URlRewriting.Config
So can anyone please point out why this error happens Again and Again in my live system?
is working on a reply...