- Notas relacionadas
- Antes de empezar
- Primeros pasos
- Instalación de AI Center
- Migración y actualización
- Proyectos
- Conjuntos de datos
- Etiquetado de datos
- Paquetes ML
- Paquetes listos para usar
- Procesos
- Habilidades ML
- Logs de ML
- Document UnderstandingTM en AI Center
- Tutorial
- Licencia
- Guía básica de resolución de problemas
La configuración de Orchestrator implica añadir algunos campos en el UiPath.Orchestrator.dll.config de Orchestrator. Antes de comenzar, realiza una copia de seguridad del archivo UiPath.Orchestrator.dll.config existente (por ejemplo, realizando una copia en una ruta diferente).
Hay dos formas en las que puedes actualizar esta configuración:
- Configuración automatizada : este es el enfoque preferido, realizado utilizando un script de PowerShell.
- Configuración manual : una guía paso a paso con explicaciones. Este método debe utilizarse en casos muy singulares, como las reglas de control que no permiten cambios automatizados en la configuración de Orchestrator. La configuración manual es propensa a errores y puede provocar problemas de instalación posteriores.
Configuración automatizada
Este método debería ser el enfoque preferido. La configuración manual solo debe utilizarse en casos muy especiales.
-
Abre PowerShell en modo de administrador.
-
Descarga el archivo desde aquí. Puedes hacerlo ejecutando el siguiente comando:
https://raw.githubusercontent.com/UiPath/ai-customer-scripts/master/orchestrator/orchestratorAutomationAIC21-10.ps1https://raw.githubusercontent.com/UiPath/ai-customer-scripts/master/orchestrator/orchestratorAutomationAIC21-10.ps1 -
Opcional: puedes familiarizarte con las opciones del script ejecutando el siguiente comando:
get-help .\orchestratorAutomation.ps1 -fullget-help .\orchestratorAutomation.ps1 -fullPara la mayoría de instalaciones de Orchestrator, los valores predeterminados de las opciones no obligatorias funcionarán. En estos casos, ejecuta el siguiente comando.
.\orchestratorAutomation.ps1 -aifUrl "<CONFIG_CLUSTER_FQDN>" -storageUrl "<storage DNS>".\orchestratorAutomation.ps1 -aifUrl "<CONFIG_CLUSTER_FQDN>" -storageUrl "<storage DNS>"Las siguientes variables deben modificarse en el comando.
- Sustituye
<CONFIG_CLUSTER_FQDN>" id="1"/> con AI Center DNS. - Sustituye
<storage DNS>por el uso del nombre de dominio para el almacenamiento. Debería ser<objectstore.{fqdn}>de forma predeterminada.
Si utilizas un puerto no estándar para AI Center para cualquiera de los mencionados anteriormente, puedes anexar
:puerto a DNS anteriores.Si tienes una ruta no estándar a UiPath.Orchestrator.dll.config de Orchestrator, la ruta
del archivo debe especificarse claramente:.\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>" - Sustituye
Manual configuration
-
Ve a Windows Server en el que se ejecuta Orchestrator y abre el archivo config de Orchestrator.
-
Añade las siguientes líneas dentro de la sección
<appSettings></appSettings>, preferiblemente antes de la etiquetaappSettingsde cierre.<!--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/es/ai-fabric/docs/building-ml-packages" /> <add key="AiFabric.MLServiceUrl" value="https://{{aifUrl}}" /> // replace {{aifUrl}} with your production URL <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/es/ai-fabric/docs/building-ml-packages" /> <add key="AiFabric.MLServiceUrl" value="https://{{aifUrl}}" /> // replace {{aifUrl}} with your production URL <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" /> -
Ejecuta el comando
iisreset" id="1"/> desde el símbolo del sistema o desde PowerShell.