Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Ah, yes, the connection string is configured to connect using TCP/IP and the SQL server instance is not configured to allow that. Pretty simple fix:
1) Open the SQL Configuration Manager from Start -> Program Files -> Microsoft SQL Server 2005 -> Configuration Tools -> SQL Server Configuration Manager
2) In the configuration manager click the plus sign beside SQL Server 2005 Network Configuration and select Protocols for MSSQLSERVER.
3) In the right hand menu, it should say 'Disabled' for TCP/IP. Right-click the TCP/IP and select Enable.
4) Right click TCP/IP again and select Properties.
5) From the properties dialog, make sure all of the IP Addresses say 'Yes' for active, (blank) for TCP Dynamic Ports, and 1433 for TCP Port. I don't think the Enabled in here matters on each IP Address because all of them say 'No' on our production server and we connect to it fine.
That should get you going. You'll have to at least re-start the service and maybe even reboot your computer, not sure.
|