- Primeros pasos
- Requisitos de red
- Requisitos de nodo único e instalación
- Requisitos multinodo e instalación
- Después de la instalación
- Acceso a AI Center
- Aprovisionar un tenant de AI Center
- Actualizar los certificados de Orchestrator e Identity Server
- Cambiar el tamaño de PVC
- Añadir un nuevo nodo al clúster
- Instalación sin conexión de paquetes ML
- Configurar el clúster
- Configurar la instalación posterior a FQDN
- Copia de seguridad y restauración del clúster
- Utilizar la pila de supervisión
- Configurar una autenticación de Kerberos
- Aprovisionar una GPU
- Utilizar el archivo de configuración
- Programación de nodos
- Migración y actualización
- Guía básica de resolución de problemas
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 predeterminado, realizado mediante 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.
Nota: Ten en cuenta que si actualizas el DNS o los certificados para Orchestrator o Identity Server, AI Center dejaría de funcionar. Tendrías que volver a configurar los certificados de Orchestrator y luego volver a implementar AI Center para solucionarlo.
- 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.ps1
https://raw.githubusercontent.com/UiPath/ai-customer-scripts/master/orchestrator/orchestratorAutomationAIC21-10.ps1 - (Opcional) Puedes familiarizarte con las opciones de script ejecutando el siguiente comando:
get-help .\)\)orchestratorAutomation.ps1 -full
get-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. Por defecto, debería ser objectstore.{fqdn}.
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>"
- 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 etiquetaappSettings
de cierre.<?comment-start?> AiFabric <?comment-end?> <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}}" /> <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" />
<?comment-start?> AiFabric <?comment-end?> <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}}" /> <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
desde el símbolo del sistema o desde PowerShell.