- Release Notes
- Before you begin
- Getting started
- Installing Automation Suite
- Requirements and installation
- Provision an AI Center tenant
- Configuring Orchestrator
- Installing Computer Vision
- Migration and upgrade
- Projects
- Datasets
- ML packages
- Pipelines
- ML Skills
- ML Logs
- Document Understanding in AI Center
- Licensing
- How To
- Basic Troubleshooting Guide

AI Center User Guide
Configuring Orchestrator
linkOrchestrator configuration entails adding some fields in the Orchestrator UiPath.Orchestrator.dll.config. Before you begin, backup your existing UiPath.Orchestrator.dll.config file (for example making a copy in a different path).
There are two ways in which you can update this configuration:
- Automated configuration - this is the preferred approach, done using a PowerShell script.
- Manual configuration - a step-by-step guideline with explanations. This method should be used in very unique cases, such as governance rules not allowing for automated changes to Orchestrator Config. Manual configuration is error prone and can lead to downstream installation issues.
Automated configuration
linkThis method should be the preferred approach. Manual configuration should only be used in very special cases.
- Open PowerShell in Administrator mode.
-
Download the file from here. You can do this by running the command
below:
https://raw.githubusercontent.com/UiPath/ai-customer-scripts/master/orchestrator/orchestratorAutomationAIC21-10.ps1
https://raw.githubusercontent.com/UiPath/ai-customer-scripts/master/orchestrator/orchestratorAutomationAIC21-10.ps1 -
Optional: You can familiarize yourself with the script options by running the
command below:
get-help .\orchestratorAutomation.ps1 -full
get-help .\orchestratorAutomation.ps1 -fullFor most of the Orchestrator installations, the default values for the non-mandatory options will work. In these cases, run the command below.
.\orchestratorAutomation.ps1 -aifUrl "<CONFIG_CLUSTER_FQDN>" -storageUrl "<storage DNS>"
.\orchestratorAutomation.ps1 -aifUrl "<CONFIG_CLUSTER_FQDN>" -storageUrl "<storage DNS>"The following variables must be changed in the command.
- Replace
<CONFIG_CLUSTER_FQDN>
with AI Center DNS. - Replace
<storage DNS>
with the domain name use for the storage. By default it should be<objectstore.{fqdn}>
.
If you are using a non-standard port for AI Center for any of the above you can appen :port to previous DNS.
If you have a non-standard path to Orchestrator UiPath.Orchestrator.dll.config, the path to the file must be specified explicitly:
.\orchestratorAutomationAIC.ps1 -aifUrl "<CONFIG_CLUSTER_FQDN>" -storageUrl "<storage DNS>" -config "<Path to UiPath.Orchestrator.dll.config file>"
.\orchestratorAutomationAIC.ps1 -aifUrl "<CONFIG_CLUSTER_FQDN>" -storageUrl "<storage DNS>" -config "<Path to UiPath.Orchestrator.dll.config file>" - Replace
Manual configuration
link- Go to the Windows Server where Orchestrator is running and open the Orchestrator config file.
-
Add the following lines within the
<appSettings></appSettings>
section, preferably right before the closingappSettings
tag.<!--AiFabric--> <add key="AiFabric.Licensing" value="true" /> <add key="AiFabric.MLSkillsCreate" value="false" /> <add key="AiFabric.MLSkillsCreateOOB" value="false" /> <add key="AiFabric.PackagesCreate" value="false" /> <add key="AiFabric.Packages" value="false" /> <add key="AiFabric.Logs" value="false" /> <add key="AiFabric.ModuleEnabled" value="true" /> <add key="AiFabric.FeatureEnabledByDefault" value="true" /> <add key="AiFabric.MLPackagingInstructionsUrl" value="https://docs.uipath.com/ai-fabric/docs/building-ml-packages" /> <add key="AiFabric.MLServiceUrl" value="https://{{aifUrl}}" /> <add key="AiFabric.MLSkillUrl" value="https://{CONFIG_CLUSTER_FQDN]/ai-deployer" /> <add key="AiFabric.MLPackageUrl" value="https://{{aifUrl}}/ai-pkgmanager" /> <add key="AiFabric.MLLogUrl" value="https://{{aifUrl}}/ai-helper" /> <add key="AiFabric.MLTrainUrl" value="https://{{aifUrl}}/ai-trainer" /> <add key="AiFabric.ModelStorageUrl" value="https://{{storageUrl}}" /> <add key="AiFabric.AccountId" value="host" />
<!--AiFabric--> <add key="AiFabric.Licensing" value="true" /> <add key="AiFabric.MLSkillsCreate" value="false" /> <add key="AiFabric.MLSkillsCreateOOB" value="false" /> <add key="AiFabric.PackagesCreate" value="false" /> <add key="AiFabric.Packages" value="false" /> <add key="AiFabric.Logs" value="false" /> <add key="AiFabric.ModuleEnabled" value="true" /> <add key="AiFabric.FeatureEnabledByDefault" value="true" /> <add key="AiFabric.MLPackagingInstructionsUrl" value="https://docs.uipath.com/ai-fabric/docs/building-ml-packages" /> <add key="AiFabric.MLServiceUrl" value="https://{{aifUrl}}" /> <add key="AiFabric.MLSkillUrl" value="https://{CONFIG_CLUSTER_FQDN]/ai-deployer" /> <add key="AiFabric.MLPackageUrl" value="https://{{aifUrl}}/ai-pkgmanager" /> <add key="AiFabric.MLLogUrl" value="https://{{aifUrl}}/ai-helper" /> <add key="AiFabric.MLTrainUrl" value="https://{{aifUrl}}/ai-trainer" /> <add key="AiFabric.ModelStorageUrl" value="https://{{storageUrl}}" /> <add key="AiFabric.AccountId" value="host" /> -
Run the
iisreset
command from the Command prompt or from PowerShell.