{"message":"500 - \"{\\\"errorCode\\\":\\\"IDENTITY_INTERNAL_SERVER_ERROR\\\",\\\"arguments\\\":[],\\\"message\\\":\\\"Identity Internal Server Error\\\",\\\"referenceToken\\\":\\\"ABC123\\\"}\""}
VERBOSE [5b08949#####4c68] [services/sso-initialization.js, http-post-callback, null:256] SAML2 verify function executing {"ssoHostAddress":"management-vcenter.example.com","id":"########-####-####-####-##########"}
DEBUG [5b08949e#####c68] [services/authentication.js, http-post-callback, serializeUser:49] serializeUser() {"user":{"upn":"[email protected]","group":["vsphere.local\\Users","vsphere.local\\Administrators","vsphere.local\\CAAdmins","vsphere.local\\SystemConfiguration.BashShellAdministrators","vsphere.local\\SystemConfiguration.ReadOnly","vsphere.local\\SystemConfiguration.SupportUsers","vsphere.local\\SystemConfiguration.Administrators","vsphere.local\\LicenseService.Administrators","vsphere.local\\Everyone"],"nameID":"[email protected]","nameIDFormat":"http://schemas.xmlsoap.org/claims/UPN","sessionIndex":"_ABCDEFG"},"id":"########-####-####-####-##########"}
ERROR [5b08949e#####c68] [services/errorHandling.js, http-post-callback, productionErrorRoute:106]
600.158: VError: Sending error response: 500 - "{\"errorCode\":\"IDENTITY_INTERNAL_SERVER_ERROR\",\"arguments\":[],\"message\":\"Identity Internal Server Error\",\"referenceToken\":\"ABC123\"}"
ERROR [common,5b08949e#####c68,a579] [c.v.v.s.client.impl.SoapBindingImpl,http-nio-127.0.0.1-7##0-exec-1] SOAP fault
com.sun.xml.internal.ws.fault.ServerSOAPFaultException: Client received SOAP Fault from server: Invalid credentials Please see the server log to find more detail regarding exact cause of the failure.
[...]
INFO [common,5b0894#####74c68,a579] [c.v.v.s.c.i.SecurityTokenServiceImpl$RequestResponseProcessor,http-nio-127.0.0.1-7100-exec-1] Provided credentials are not valid.
ERROR [common,5b089#####874c68,a579] [c.v.e.s.i.s.services.PscServiceImpl,http-nio-127.0.0.1-7100-exec-1] Error while creating admin client using psc management-vcenter.example.com
com.vmware.evo.sddc.common.services.psc.exception.AuthenticationFailedException: Unable to obtain Security Token Service from SSO 'management-vcenter.example.com' as provided credentials are invalid
[...]
Caused by: com.vmware.vim.sso.client.exception.AuthenticationFailedException: Provided credentials are not valid.
VMware Cloud Foundation 4.x
VMware Cloud Foundation 5.x
VMware Cloud Foundation 9.x
This can be caused by a mismatch in the password for the SSO administrator account, root account, or service account in VCF 5.2+
lookup_passwords -u [email protected] -p '<SSO_PASSWORD>' -n 1 -s 10 -e PSC
lookup_passwords -u admin@local -p '<admin@local_password>' -n 1 -s 10 -e PSC
/opt/vmware/vcf/operationsmanager/scripts/cli/sddcmanager_restart_services.sh
In VCF 5.2+, the vCenter Service account password may become mismatched in the same manner. The steps below can be used to remediate a mismatched svc account password:
TOKEN=$(curl -d '{"username" : "<SSO_ACCOUNT>", "password" : "<SSO_PASSWORD>"}' -H "Content-Type: application/json" -X POST http://127.0.0.1/v1/tokens | jq -r '.accessToken')
Replace the appropriate account and password in the appropriate fields. For example:
TOKEN=$(curl -d '{"username" : "[email protected]", "password" : "VMware123!"}' -H "Content-Type: application/json" -X POST http://127.0.0.1/v1/tokens | jq -r '.accessToken')
To determine if the variable TOKEN above worked properly and is valid check it with this command:
echo $TOKEN
curl -X GET -H "Authorization: Bearer "$TOKEN"" --insecure 'https://localhost/v1/system/credentials/service' | json_pp | less
/opt/vmware/vcf/operationsmanager/scripts/cli/sddcmanager_restart_services.sh