After installation the OrchestratorCredentialsProxy failed to start in disconnected mode due to an invalid configuration

How to configure Disconnected Credentials Proxy Setup

Issue Description:

"UiPath.OrchestratorCredentialsProxy.Extensions.WebApplicationExtensions OrchestratorCredentialsProxy failed to start due to invalid configuration"

image.png


Resolution:

  1. Configure the SecureStoreConfiguration section using the parameter below in appsettings.production.json file.

image.png

  1. Execute the script below, convert the certification into base64 and mention it in appsettings.production.json file.
$fileContentBytes = get-content 'C:\certificationame.pfx' -Encoding Byte

[System.Convert]::ToBase64String($fileContentBytes) | Out-File 'C:\output.txt'
  • SerializedClientCertificate": "", // must be ".pfx" as base64
  • "ClientCertificatePassword": "", // must be ".pfx" as base64

  1. Restart the Orchestrator credentials proxy application in the IIS