910001: Can not connect to Automation Orchestrator Server. org.springframework.web.reactive.function.client.WebClientRequestException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target; nested exception is javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
openssl s_client -connect <VRA_FQDN>:443 2> /dev/null | openssl x509 | awk 'NF {sub(//, ""); printf "%s\\n",$0;}'curl -k "https://<VRA_FQDN>/iaas/api/integrations/?apiVersion=2021-07-15" -H "Authorization: Bearer <Token>" | jq -r '.content[] | .id + "," + .name'curl -k "https://<VRA_FQDN>/iaas/api/integrations/<Integration ID captured in step-3>?apiVersion=2021-07-15" -H "Authorization: Bearer <Token>" | jq .curl -v -k -X PATCH "https://<VRA_FQDN>/iaas/api/integrations/<Integration ID captured in step-3>?apiVersion=2021-07-15" -H "Accept: application/json" -H 'Content-Type: application/json' -H "Authorization: Bearer <Token>" --data-raw '{"integrationProperties": {"certificate":"Certificate content captured in step 2"}}'{ "integrationProperties": { "certificate": "Certificate content captured in step 2" } }910000: Error : Can not connect to the Automation Orchestrator Server...".To fix this error you must patch vCO Integration and correct, or zero out the properties that having invalid state like:
set nothing for "vroUnresponsiveReason":"" or set "vro-responsive": "true"
8. Patch the integration using API: curl -v -k -X PATCH "https://<VRA_FQDN>/iaas/api/integrations/<Integration ID captured in step-3>?apiVersion=2021-07-15" -H "Accept: application/json" -H 'Content-Type: application/json' -H "Authorization: Bearer <Token>" --data-raw '{"customProperties": {"vroUnresponsiveReason":""}}'
Body with just vroUnresponsiveReason:
{ "customProperties": { "vroUnresponsiveReason":""} }
9. If update integration fails due to properties to be read-only , please open the case with support team and ask to help.