Automation Suite
2023.10
False
Imagen de fondo del banner
Guía de instalación de Automation Suite en Linux
Última actualización 19 de abr. de 2024

Uso de la herramienta de configuración de Orchestrator

La herramienta de configuración de Orchestrator es un script bash diseñado para facilitar la colocación de archivos y configuraciones dentro de la implementación de Orchestrator en Automation Suite. Ayuda a agregar archivos de almacenamiento, complementos del almacén de credenciales, extensiones NLog, nueva configuración de NLog y anular appSettings.

Entre los ejemplos de operaciones que se pueden realizar con esta herramienta se incluyen:

El entorno en el que utilices la herramienta de configuración de Orchestrator debe ser capaz de ejecutar un script bash y tener las siguientes herramientas:

Importante:

No descargues ni utilices la herramienta ArgoCD CLI de forma independiente. Para mantener la compatibilidad y garantizar un funcionamiento sin problemas, recomendamos utilizar el ArgoCD que incluimos en los artefactos de Automation Suite. Para ello, debes añadir ArgoCD a tu ruta desde el último instalador ejecutando el siguiente comando:

export PATH=$PATH:/opt/UiPathAutomationSuite/<version>/installer/binexport PATH=$PATH:/opt/UiPathAutomationSuite/<version>/installer/bin
Para poder ejecutar la herramienta de configuración de Orchestrator desde cualquier ubicación, actualiza la variable PATH para incluir <installer-dir>/Tools, como se muestra en el siguiente ejemplo:
export PATH="$PATH:/opt/UiPathAutomationSuite/online_installer_<version>/Tools"export PATH="$PATH:/opt/UiPathAutomationSuite/online_installer_<version>/Tools"
Asegúrate de que la versión de la utilidad jq es 1.6. Si no es así, actualízala con una de las siguientes opciones:
  • Opción 1:

    yum install -y epel-release yum install -y jqyum install -y epel-release yum install -y jq
  • Opción 2:

    curl https://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/j/jq-1.6-2.el7.x86_64.rpm --output /tmp/jq-1.6-2.el7.x86_64.rpm
    yum localinstall /tmp/jq-1.6-2.el7.x86_64.rpm
    jq --versioncurl https://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/j/jq-1.6-2.el7.x86_64.rpm --output /tmp/jq-1.6-2.el7.x86_64.rpm
    yum localinstall /tmp/jq-1.6-2.el7.x86_64.rpm
    jq --version

Ejemplo de uso

Usage: ./orchestrator_configurator.sh \
  -s blobstoragefolder -p pluginsfolder -n nlogextensionsfolder \
  -c appsettings.custom.config -l nlog.custom.config 

    -k|--encryption-key
        the value of the encryption key that will override the key generated at install

    -c|--app-settings
        application configuration file containing json with key-value structure
    -l|--nlog-config-file
        nlog config file, json

    -s|--storage-folder
        location of the storage folder on the local disk
    -n|--nlog-extensions-folder
        location of the nlog extensions on the local disk
    -p|--securestore-plugins-folder
        location of the securestore plugins on the local disk
    --use-external-storage
        use external storage instead of in cluster CEPH storage

    -d|--dry-run
        do not update the orchestrator app with the new values
    -y|--accept-all
        do not prompt for confirmation of actions and overwriting of files with kubectl cp.Usage: ./orchestrator_configurator.sh \
  -s blobstoragefolder -p pluginsfolder -n nlogextensionsfolder \
  -c appsettings.custom.config -l nlog.custom.config 

    -k|--encryption-key
        the value of the encryption key that will override the key generated at install

    -c|--app-settings
        application configuration file containing json with key-value structure
    -l|--nlog-config-file
        nlog config file, json

    -s|--storage-folder
        location of the storage folder on the local disk
    -n|--nlog-extensions-folder
        location of the nlog extensions on the local disk
    -p|--securestore-plugins-folder
        location of the securestore plugins on the local disk
    --use-external-storage
        use external storage instead of in cluster CEPH storage

    -d|--dry-run
        do not update the orchestrator app with the new values
    -y|--accept-all
        do not prompt for confirmation of actions and overwriting of files with kubectl cp.
  • Ejemplo de uso

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.