An Azure service that is used to provision Windows and Linux virtual machines.
Hello @dreamwa The error “The target principal name is incorrect. "Cannot generate SSPI context” typically occurs when you use Windows authentication to connect to a SQL Server instance remotely.
This error means that SSPI (Security Support Provider Interface) tries but can’t use Kerberos authentication to delegate client credentials through TCP/IP or Named Pipes to SQL Server. In most cases, a misconfigured Service Principal Name (SPN) causes this error.
A Service Principal Names (SPN) is a unique identifier of a service instance. SPNs are used by Kerberos authentication to associate a service instance with a service logon account. For example, a typical SPN for a server that is running an instance of SQL Server is as follows: MSSQLSvc/SQLSERVER1.northamerica.corp.mycompany.com:1433.
If the SPN is not configured correctly, or if the client system is not able to reach the Domain Controller, it can result in the error message you’re seeing. One possible solution is to delete the registered SPN for your SQL Service under the incorrect account, and then register the SPN under the correct service account.
I hope this answers your question, and the links provided helps you.