March 22, 2010 at 1:33 pm
I have 2 servers:
Server A is on Windows 2003 R2 with SQL Server 2005
Server B is on Windows 2008 with SQL Server 2008
Both were working perfectly fine. We wanted to swap the machines so I renamed Server A Server B and changed ip addresses and renamed Server B with Server A.
Now Server B is the one that is Windows 2003 R2 with SQL 2005 and Windows Authentication works fine.
Server A is now on Windows 2008 with SQL Server 2008. If you log onto the machine locally, windows authentication works. If you log into SQL from a remote machine, windows authentication gets the SSPI Context error.
Both machines are part of a domain and they both were using before and after the name switch a domain account as the service to run SQL.
What could be causing this?
March 22, 2010 at 1:37 pm
dwh-1095413 (3/22/2010)
I have 2 servers:Server A is on Windows 2003 R2 with SQL Server 2005
Server B is on Windows 2008 with SQL Server 2008
Both were working perfectly fine. We wanted to swap the machines so I renamed Server A Server B and changed ip addresses and renamed Server B with Server A.
Now Server B is the one that is Windows 2003 R2 with SQL 2005 and Windows Authentication works fine.
Server A is now on Windows 2008 with SQL Server 2008. If you log onto the machine locally, windows authentication works. If you log into SQL from a remote machine, windows authentication gets the SSPI Context error.
Both machines are part of a domain and they both were using before and after the name switch a domain account as the service to run SQL.
What could be causing this?
If you run select * from master.sys.servers, do the results match the specified (new) computer names?
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
March 22, 2010 at 1:47 pm
The name change is probably your issue as Wayne said (or at least it's one issue you need to deal with if you haven't already).
If it doesn't match when you do select * from sys.servers and/or select @@servername, do the following:
sp_dropserver '<old_server_name>'
GO
sp_addserver '<new_server_name>', local
GO
and then restart the SQL server service.
The Redneck DBA
March 22, 2010 at 1:48 pm
This query returns 7 results:
id 0 is the name that the local server should be. The is_linked column is 0.
The rest are linked servers and the is_linked is set to 1.
WayneS (3/22/2010)
dwh-1095413 (3/22/2010)
I have 2 servers:Server A is on Windows 2003 R2 with SQL Server 2005
Server B is on Windows 2008 with SQL Server 2008
Both were working perfectly fine. We wanted to swap the machines so I renamed Server A Server B and changed ip addresses and renamed Server B with Server A.
Now Server B is the one that is Windows 2003 R2 with SQL 2005 and Windows Authentication works fine.
Server A is now on Windows 2008 with SQL Server 2008. If you log onto the machine locally, windows authentication works. If you log into SQL from a remote machine, windows authentication gets the SSPI Context error.
Both machines are part of a domain and they both were using before and after the name switch a domain account as the service to run SQL.
What could be causing this?
If you run select * from master.sys.servers, do the results match the specified (new) computer names?
March 22, 2010 at 1:51 pm
The @@servername is not the same. I have run the 2 queries but I cannot restart sql server until after office hours.
I will see if this is causing the issue.
Jason Shadonix (3/22/2010)
The name change is probably your issue as Wayne said (or at least it's one issue you need to deal with if you haven't already).If it doesn't match when you do select * from sys.servers and/or select @@servername, do the following:
sp_dropserver '<old_server_name>'
GO
sp_addserver '<new_server_name>', local
GO
and then restart the SQL server service.
March 22, 2010 at 2:06 pm
dwh-1095413 (3/22/2010)
id 0 is the name that the local server should be. The is_linked column is 0.
...and...
The @@servername is not the same. I have run the 2 queries but I cannot restart sql server until after office hours.
I will see if this is causing the issue.
Jason Shadonix (3/22/2010)
The name change is probably your issue as Wayne said (or at least it's one issue you need to deal with if you haven't already).If it doesn't match when you do select * from sys.servers and/or select @@servername, do the following:
sp_dropserver '<old_server_name>'
GO
sp_addserver '<new_server_name>', local
GO
and then restart the SQL server service.
Sounds like the service needs restarted... @@servername loads it's info on startup; if you change it (via Jason's code), it does not change.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
March 22, 2010 at 2:14 pm
Thanks I plan on restarting the services later on tonight and testing. I will post afterwards if this fixed the issue or not.
However, if this does not fix the issue do you believe running a sql 2008 repair would help?
WayneS (3/22/2010)
dwh-1095413 (3/22/2010)
id 0 is the name that the local server should be. The is_linked column is 0....and...
The @@servername is not the same. I have run the 2 queries but I cannot restart sql server until after office hours.
I will see if this is causing the issue.
Jason Shadonix (3/22/2010)
The name change is probably your issue as Wayne said (or at least it's one issue you need to deal with if you haven't already).If it doesn't match when you do select * from sys.servers and/or select @@servername, do the following:
sp_dropserver '<old_server_name>'
GO
sp_addserver '<new_server_name>', local
GO
and then restart the SQL server service.
Sounds like the service needs restarted... @@servername loads it's info on startup; if you change it (via Jason's code), it does not change.
March 22, 2010 at 2:40 pm
No. If this isn't your issue, then I'd look into the network. This error message pops up a lot with Kerboros authentication failure messages, so I'd start by looking there.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
March 22, 2010 at 8:02 pm
Additionally, check to make sure that the SPN is registered correctly.
March 23, 2010 at 3:30 am
We had this occur when the service account was changed & the server wasn't shut down cleanly so the the spn was no longer registered correctly.
We had to shut down sql change the service account back to the previous account bring sql back up, then shut down the sql server cleanly then change the service account to the correct account & bring sql back up, this resolved this issue for us.
March 23, 2010 at 10:20 am
Thanks this method fixed the issue we were having. Thanks again.
dwh-1095413 (3/22/2010)
Thanks I plan on restarting the services later on tonight and testing. I will post afterwards if this fixed the issue or not.However, if this does not fix the issue do you believe running a sql 2008 repair would help?
WayneS (3/22/2010)
dwh-1095413 (3/22/2010)
id 0 is the name that the local server should be. The is_linked column is 0....and...
The @@servername is not the same. I have run the 2 queries but I cannot restart sql server until after office hours.
I will see if this is causing the issue.
Jason Shadonix (3/22/2010)
The name change is probably your issue as Wayne said (or at least it's one issue you need to deal with if you haven't already).If it doesn't match when you do select * from sys.servers and/or select @@servername, do the following:
sp_dropserver '<old_server_name>'
GO
sp_addserver '<new_server_name>', local
GO
and then restart the SQL server service.
Sounds like the service needs restarted... @@servername loads it's info on startup; if you change it (via Jason's code), it does not change.
Viewing 11 posts - 1 through 10 (of 10 total)
You must be logged in to reply to this topic. Login to reply