"The Kerberos subsystem encountered an error, The SQL Server instance name must be the same as the computer name" error when you install Microsoft Dynamics CRM
This article helps you resolve the problem where the error The Kerberos subsystem encountered an error, The SQL Server instance name must be the same as the computer name occurs.
Applies to: Microsoft Dynamics CRM 2011
Original KB number: 2841195
Symptoms
When installing Microsoft Dynamics CRM 2011 Server, the following error may occur:
The SQL Server instance name must be the same as the computer name.
Cause
The Microsoft SQL Server machine name has been changed after the Microsoft SQL Server had been installed
Resolution
Utilize the steps below to resolve the error message:
On the Microsoft SQL server, select Start and open SQL Server Management Studio.
Connect to the Server and instance that will contain the Microsoft Dynamics CRM databases.
Select New Query from the toolbar.
Enter the two lines below and then select the execute button on the toolbar
Select @@SERVERNAME Select * from sysservers
Observing the results will show a mismatch.
Clear the previous lines and enter the line below. You will need to replace the
<servername>
with the name in the svrname column from step 4.sp_dropserver '<servername>'
Clear the previous line and enter the line below. You will need to replace the
<servername>
with the value of theselect @@servername
from step 4.sp_addserver '<servername>', 'local'
Enter the two lines below and then select the execute button on the toolbar:
sp_helpserver select @@servername
Last Restart the SQL Server Service for this instance of SQL.