Dev License: This installation of WHMCS is running under a Development License and is not authorized to be used for production use. Please report any cases of abuse to abuse@whmcs.com
One of our Windows VPS customers received following error while connecting to MS SQL server.

Error message


A connection was successfully established with the server, but then an error occurred during the login process.(provider: TCP Provider, error: 0 - An established connection was aborted by the software in your host machine.) Microsoft SQL Server, error: 10053)

Upon checking the error message at event logs, we came to know that the connection on MS SQL server was already made and new connections were being rejected. To fix connection restrictions, we set user connection limit to unlimited as follows.

  1. Open command prompt with Administrator privileges and issue following commands.

    SQLCMD Prompt

    sqlcmd
    exec sp_configure 'user connections', 0
    reconfigure
  2. After issuing above commands restart MS SQL service.

Was this answer helpful? 0 Users Found This Useful (1 Votes)

Powered by WHMCompleteSolution