AI Center
2023.10
False
Imagen de fondo del banner
Guía del usuario de AI Center
Última actualización 19 de abr. de 2024

Configurar Orchestrator

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 con un script de PowerShell.
  • Configuración manual: una guía paso a paso con explicaciones. Este método debería utilizarse en casos muy excepcionales, como en el que las reglas de control no permiten cambios automatizados en Orchestrator Config. La configuración manual es propensa a errores y puede generar problemas de instalación al inicio.

Configuración automatizada

Nota:

Este método debería ser el enfoque preferido. La configuración manual solo debe utilizarse en casos muy especiales.

  1. Abre PowerShell en modo de administrador.
  2. 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
  3. Opcional: Puedes familiarizarte con las opciones de script ejecutando el comando a continuación:
    get-help .\orchestratorAutomation.ps1 -fullget-help .\orchestratorAutomation.ps1 -full

    Para 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>"

Configuración manual

  1. Ve a Windows Server en el que se ejecuta Orchestrator y abre el archivo config de Orchestrator.
  2. Añade las siguientes líneas dentro de la sección <appSettings></appSettings>, preferiblemente antes de la etiqueta appSettings de 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/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" />
  3. Ejecuta el comando iisreset desde el símbolo del sistema o desde PowerShell.
  • Configuración automatizada
  • Configuración manual

Was this page helpful?

Obtén la ayuda que necesitas
RPA para el aprendizaje - Cursos de automatización
Foro de la comunidad UiPath
Logotipo blanco de UiPath
Confianza y seguridad
© 2005-2024 UiPath. All rights reserved.