A Dtrace of Deployment_Scanner will show "The target principal name is incorrect" and Event ID 13360 will be captured in log and the Enterprise Vault Event Viewer log.
(Deployment_Scanner) <1234> EV:H {CADOContext::CreateConnection:#658} Failed to Open Connection hr: Unspecified error (0x80004005)
(Deployment_Scanner) <1234> EV:H {DecodeAndLogError:#931} Error Description: [SSL Provider: The target principal name is incorrect.|]
(Deployment_Scanner) <1234> EV~E Event ID: 13360 An error was detected while accessing the Vault Database 'Provider=MSOLEDBSQL19;Data Source=
This error can be caused if the connection is using the short name (NetBIOS) and not the FQDN of the SQL server.
Update the connections to use the FQDN and not the NetBIOS name for all database connections. The following EV PowerShell command can be used to update all EV database connections. Update the names for the specific names in the environment.
Get-EVDatabaseDetail | Where {$_.SQLInstanceName -eq '
Use the ,port option if SQL is using a customised (non-standard) port. The following example lists the SQL server NetBIOS name as SQLSERVER using the custom port 7109 in the domain EV.LOCAL:
Get-EVDatabaseDetail | Where {$_.SQLInstanceName -eq 'SQLSERVER,7109'} | Set-EVDatabaseDetail -ServerName 'SQLSERVER.EV.LOCAL,7109'
For more information on the command please refer to the Related Knowledge Base Articles section.