SqlException: Timeout expired

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
5 years ago
Hi everyone,

I'm trying to update my site from 3.40 to 4.10. I have performed all the steps on the SQL Server side.

Result:

SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
Nop.Web.Framework.Infrastructure.Extensions.ApplicationBuilderExtensions+<>c.<UseNopExceptionHandler>b__1_1(HttpContext context) in ApplicationBuilderExtensions.cs
-
                            EngineContext.Current.Resolve<ILogger>().Error(exception.Message, exception, currentCustomer);
                        }
                    }
                    finally
                    {
                        //rethrow the exception to show the error page
                        throw exception;
                    }
                });
            });
        }
        /// <summary>


The site is seen once yes and 10 times no.

You can help me?

Thanks for the attention.
5 years ago
This is a command timeout. The default value for SQLCommand is 30 seconds. Resource limitations on your database server are causing a query to take longer than this value. This can be remedied by increasing the database server resources or setting the CommandTimeout value for the command to zero - never times out.
3 years ago
infinitemachinery wrote:
This is a command timeout. The default value for SQLCommand is 30 seconds. Resource limitations on your database server are causing a query to take longer than this value. This can be remedied by increasing the database server resources or setting the CommandTimeout value for the command to zero - never times out.

4.2/4.3 all show timeout under linux when run task, are they because of vps problems?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.