Link to home
Start Free TrialLog in
Avatar of James Danahay
James DanahayFlag for Australia

asked on

SQL Connection

SQL Express 2014 connection error
On the SQL server I can login using the credential ok. I'm on the VMware Horizon server where I get the below error message:
An error occurred while attempting to configure the database. Double check the database parameters and ensure that the database is not down, restarting, or otherwise unavailable.
I have disabled the windows firewall.
What else can I check?
ASKER CERTIFIED SOLUTION
Avatar of Darran Brown
Darran Brown

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Also make sure that you allow remote connections. By default SQL Express only allows local connections so you have to change it if you want remote access.

exec sp_configure 'remote access', 1
reconfigure
Also check if SQL Browser service is up and running.