|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Friday, May 10, 2013 12:58 PM
Points: 45,
Visits: 171
|
|
Hi I have installed SQL Server 2008 (F1SQL) with two named instances (DEV, QA) and this server is configured for mixed mode authentication. Now when I am connecting to this server, it is not allowing connection with server name as F1SQL\DEV, F1SQL\QA but allowing connection with F1SQL\DEV,1433, F1SQL\QA,1433 respectively .
I dont want to specify the port numbers while I connect to this database instance, so I tried creating an alias F1SQLDEV for the F1SQL\DEV using SQL server Configuration manager and it didn't work, so can some one please help me out.
|
|
|
|
|
SSCoach
         
Group: General Forum Members
Last Login: 2 days ago @ 1:55 PM
Points: 15,442,
Visits: 9,571
|
|
What/where are you connecting from? Management Studio? Linked servers? Something in your application(s)?
- Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC Property of The Thread
"Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Yesterday @ 6:26 AM
Points: 138,
Visits: 356
|
|
| Do you have the SQL server browser service running?
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Friday, May 10, 2013 12:58 PM
Points: 45,
Visits: 171
|
|
| I am connecting from the Management studio
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Friday, May 10, 2013 12:58 PM
Points: 45,
Visits: 171
|
|
| I have SQL Server Browser services running
|
|
|
|
|
SSCoach
         
Group: General Forum Members
Last Login: 2 days ago @ 1:55 PM
Points: 15,442,
Visits: 9,571
|
|
Make sure SQL Server Browser service is running correctly.
- Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC Property of The Thread
"Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 11:40 AM
Points: 6,722,
Visits: 11,764
|
|
And make sure UDP port 1434 is open from your workstations to your server (check Windows firewall settings and other network firewalls).
__________________________________________________________________________________________________ There are no special teachers of virtue, because virtue is taught by the whole community. --Plato
Believe you can and you're halfway there. --Theodore Roosevelt
Everything Should Be Made as Simple as Possible, But Not Simpler --Albert Einstein
The significant problems we face cannot be solved at the same level of thinking we were at when we created them. --Albert Einstein
1 apple is not exactly 1/8 of 8 apples. Because there are no absolutely identical apples. --Giordy
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Monday, May 06, 2013 7:33 AM
Points: 12,
Visits: 111
|
|
| if you don't have any database attached with that instance then try to use repair option.........
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: 2 days ago @ 2:06 AM
Points: 18,
Visits: 378
|
|
| If you are able to make connection with using port no and without port you are not then browser service is not running and if it looking running then port 1434 is not open.Please check port 1434 is open or not.
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Today @ 4:58 AM
Points: 34,
Visits: 270
|
|
One option is to configure the two instances with their own IP addresses and then you can use port 1433 on both. This way you can use DNS for all your connection strings, odbc and so on and then you don't have to mess with aliases. Using server\instance or random portnumbers in connectionstrings is administrative/migration hell..
So I've set a standard for the DNS entries: SQL-ApplicationName.company.local SQL-Databasename.company.local
And I use this for ALL SQL connections , this way it is easier to migrate/move in the future (just change IP for the host entry). Also everything is documented in the DNS.
There are some things to think about when setting this up, reply to this if you are interested.
|
|
|
|