- Overview
- Requirements
- Root privileges requirements
- High Availability – three availability zones
- Certificate requirements
- Network requirements
- Validating the prerequisites in a single-node evaluation setup
- Validating the prerequisites in a multi-node HA-ready production setup
- Installation
- Q&A: Deployment templates
- Configuring the machines
- Configuring the external objectstore
- Configuring an external Docker registry
- Configuring the load balancer
- Configuring the DNS
- Configuring Microsoft SQL Server
- Configuring the certificates
- Online multi-node HA-ready production installation
- Offline multi-node HA-ready production installation
- Disaster recovery - Installing the secondary cluster
- Downloading the installation packages
- install-uipath.sh parameters
- Enabling Redis High Availability Add-On for the cluster
- Document Understanding configuration file
- Adding a dedicated agent node with GPU support
- Adding a dedicated agent Node for Task Mining
- Connecting Task Mining application
- Adding a Dedicated Agent Node for Automation Suite Robots
- Post-installation
- Cluster administration
- Monitoring and alerting
- Migration and upgrade
- Migration options
- Step 1: Moving the Identity organization data from standalone to Automation Suite
- Step 2: Restoring the standalone product database
- Step 3: Backing up the platform database in Automation Suite
- Step 4: Merging organizations in Automation Suite
- Step 5: Updating the migrated product connection strings
- Step 6: Migrating standalone Insights
- Step 7: Deleting the default tenant
- B) Single tenant migration
- Product-specific configuration
- Best practices and maintenance
- Troubleshooting
- How to troubleshoot services during installation
- How to uninstall the cluster
- How to clean up offline artifacts to improve disk space
- How to clear Redis data
- How to enable Istio logging
- How to manually clean up logs
- How to clean up old logs stored in the sf-logs bundle
- How to disable streaming logs for AI Center
- How to debug failed Automation Suite installations
- How to delete images from the old installer after upgrade
- How to automatically clean up Longhorn snapshots
- How to disable TX checksum offloading
- How to manually set the ArgoCD log level to Info
- How to generate the encoded pull_secret_value for external registries
- How to address weak ciphers in TLS 1.2
- Unable to run an offline installation on RHEL 8.4 OS
- Error in downloading the bundle
- Offline installation fails because of missing binary
- Certificate issue in offline installation
- First installation fails during Longhorn setup
- SQL connection string validation error
- Prerequisite check for selinux iscsid module fails
- Azure disk not marked as SSD
- Failure after certificate update
- Antivirus causes installation issues
- Automation Suite not working after OS upgrade
- Automation Suite requires backlog_wait_time to be set to 0
- GPU node affected by resource unavailability
- Volume unable to mount due to not being ready for workloads
- Support bundle log collection failure
- Failure to upload or download data in objectstore
- PVC resize does not heal Ceph
- Failure to resize PVC
- Failure to resize objectstore PVC
- Rook Ceph or Looker pod stuck in Init state
- StatefulSet volume attachment error
- Failure to create persistent volumes
- Storage reclamation patch
- Backup failed due to TooManySnapshots error
- All Longhorn replicas are faulted
- Setting a timeout interval for the management portals
- Update the underlying directory connections
- Authentication not working after migration
- Kinit: Cannot find KDC for realm <AD Domain> while getting initial credentials
- Kinit: Keytab contains no suitable keys for *** while getting initial credentials
- GSSAPI operation failed due to invalid status code
- Alarm received for failed Kerberos-tgt-update job
- SSPI provider: Server not found in Kerberos database
- Login failed for AD user due to disabled account
- ArgoCD login failed
- Failure to get the sandbox image
- Pods not showing in ArgoCD UI
- Redis probe failure
- RKE2 server fails to start
- Secret not found in UiPath namespace
- ArgoCD goes into progressing state after first installation
- Issues accessing the ArgoCD read-only account
- MongoDB pods in CrashLoopBackOff or pending PVC provisioning after deletion
- Unhealthy services after cluster restore or rollback
- Pods stuck in Init:0/X
- Prometheus in CrashloopBackoff state with out-of-memory (OOM) error
- Missing Ceph-rook metrics from monitoring dashboards
- Running High Availability with Process Mining
- Process Mining ingestion failed when logged in using Kerberos
- Unable to connect to AutomationSuite_ProcessMining_Warehouse database using a pyodbc format connection string
- Airflow installation fails with sqlalchemy.exc.ArgumentError: Could not parse rfc1738 URL from string ''
- How to add an IP table rule to use SQL Server port 1433
- Using the Automation Suite Diagnostics Tool
- Using the Automation Suite Support Bundle Tool
- Exploring Logs
Validating the prerequisites in a multi-node HA-ready production setup
validateUiPathASReadiness.sh
script to evaluate your environment and generate a summary before performing the installation.
Validation |
Description |
---|---|
Hardware requirements |
Validates that each machine in the cluster meets the hardware requirements. The check takes into account the following aspects:
|
Disk partitioning and configuration |
Validates that you properly partitioned and configured the disk. The check takes into account the following aspects:
|
SQL Server connectivity |
Validates the connectivity to the configured SQL Server and database. The check takes into account the following aspects:
|
Server certificate |
Checks that the server certificate you provided is valid. The check takes into account the following aspects:
|
Token-signing certificate |
Checks that the token-signing certificate you provided is valid. The check takes into account the following aspects:
|
Proxy |
Validates that you properly configure the proxy. The check takes into account the following aspects:
|
Connectivity |
Validates that all machines can connect to each other, that all the required URLs are on the firewall allowlist, and more. The check takes into account the following aspects:
|
System services |
Validates that system services are properly configured. The check takes into account the following aspects:
|
Software requirements |
Validates that all the required software is installed. If some software is not installed, the
install-uipath.sh installer attempts to install it.
|
Upgrade |
Validates if the upgrade path across Automation Suite versions is correct. |
as-installer.zip
, and supporting tools are bundled as as-infra.tar.gz
for offline only. You need these files to generate a report on all the machines on which you plan to install Automation Suite.
Installation type |
Files to download |
---|---|
Online |
as-installer.zip – Mandatory. For download instructions, see as-installer.zip.
|
Offline |
as-installer.zip – Mandatory. For download instructions, see as-installer.zip.
as-infra.tar.gz – Mandatory. For download instructions, see as-infra.tar.gz.
|
-
Become root by running the following command:
sudo su -
sudo su - -
Copy the files to the
/opt/UiPathAutomationSuite/{version}
folder by running the following command:VERSION="" #add the version number you are trying to install. Ex: for 2022.4.0 Set VERSION="2022.4.0" mkdir -p /opt/UiPathAutomationSuite/${VERSION} # For below command replace the /path/to where actually the files are present. cp /path/to/as-installer.zip /opt/UiPathAutomationSuite/${VERSION} # Additionally for offline, copy as-infra.tar.gz as well to /opt/UiPathAutomationSuite/{VERSION} folder cp /path/to/as-infra.tar.gz /opt/UiPathAutomationSuite/${VERSION} cd /opt/UiPathAutomationSuite/${VERSION}
VERSION="" #add the version number you are trying to install. Ex: for 2022.4.0 Set VERSION="2022.4.0" mkdir -p /opt/UiPathAutomationSuite/${VERSION} # For below command replace the /path/to where actually the files are present. cp /path/to/as-installer.zip /opt/UiPathAutomationSuite/${VERSION} # Additionally for offline, copy as-infra.tar.gz as well to /opt/UiPathAutomationSuite/{VERSION} folder cp /path/to/as-infra.tar.gz /opt/UiPathAutomationSuite/${VERSION} cd /opt/UiPathAutomationSuite/${VERSION} -
Unzip the package by running the following command:
unzip as-installer.zip -d installer
unzip as-installer.zip -d installer -
Assign the necessary permissions and navigate to the script folder by running the following command:
chmod -R 755 installer cd installer
chmod -R 755 installer cd installer
To view the help section and supported flags, run the following command:
./validateUiPathASReadiness.sh --help
./validateUiPathASReadiness.sh --help
Output:
***************************************************************************************
validateUiPathASReadiness.sh Runs pre-install validation checks
Usage:
validateUiPathASReadiness.sh [command]
validateUiPathASReadiness.sh [flags]
Available Commands:
validate-packages Validate that required packages are installed
install-packages Install required packages. If --install-type offline, this will also install offline required packages
Arguments:
-i|--input Specify cluster config json file. Defaults to /opt/UiPathAutomationSuite/cluster_config.json
-d|--debug Debug mode to get additional details helpful for debugging
-m|--machines Comma separated IP address / hostnames of all the machines
-n|--node-type Possible values [server|agent|taskmining|asrobots|gpu]. Defaults to server
--install-type Possible values [online|offline]. Defaults to online
--prereq-bundle </uipath/offline_bundle.tar.gz> Specify the path to the prereq bundle
--prereq-tmp-folder </uipath> Specify parent directory for the temporary install folder
--kubeconfig Specify path to the kubeconfig file
-h|--help Display help
***************************************************************************************
***************************************************************************************
validateUiPathASReadiness.sh Runs pre-install validation checks
Usage:
validateUiPathASReadiness.sh [command]
validateUiPathASReadiness.sh [flags]
Available Commands:
validate-packages Validate that required packages are installed
install-packages Install required packages. If --install-type offline, this will also install offline required packages
Arguments:
-i|--input Specify cluster config json file. Defaults to /opt/UiPathAutomationSuite/cluster_config.json
-d|--debug Debug mode to get additional details helpful for debugging
-m|--machines Comma separated IP address / hostnames of all the machines
-n|--node-type Possible values [server|agent|taskmining|asrobots|gpu]. Defaults to server
--install-type Possible values [online|offline]. Defaults to online
--prereq-bundle </uipath/offline_bundle.tar.gz> Specify the path to the prereq bundle
--prereq-tmp-folder </uipath> Specify parent directory for the temporary install folder
--kubeconfig Specify path to the kubeconfig file
-h|--help Display help
***************************************************************************************
The following table describes the parameters you can use when running the script:
Parameter |
Description |
---|---|
|
Accepts the
cluster_config.json file as input. This file defines the parameters, settings, and preferences applied to the UiPath services deployed via Automation
Suite. For details, see Advanced Installation Experience.
If you do not provide this file, the script will trigger the interactive experience to collect these inputs. The file will then be generated on your behalf. |
|
Debug mode to get additional details helpful for debugging. |
|
Accepts comma-separated IP address / hostnames of all the machines. This is required to check the connectivity between all the nodes on the required port. The parameter is mandatory for multi-node HA-ready production installations. In addition to that, the parameter is also required if you plan to add a Task Mining, GPU, or Automation Suite Robots node in a single-node evaluation cluster. |
|
Accepts the type of the current node. Possible values are:
server , agent , task-mining , gpu , and asrobots .
The default value is
server .
|
|
Accepts the installation method:
online or offline .
The default value is
online .
|
|
Accepts the absolute path where the
as-infra.tar.gz is located.
|
|
Accepts the absolute path where
as-infra.tar.gz bundle will be temporarily extracted. If this path is not provided, the installer will select the /tmp folder.
|
|
Specify the path to the kubeconfig file. |
|
Validates the required RPM packages. |
|
Installs the required RPM packages for online installation. |
|
Installs the RPM required packages for offline installation. |
- To validate the first server machine, run the following command:
Online
./validateUiPathASReadiness.sh \
--node-type server \
--install-type online \
--machines "10.0.1.8, 10.0.1.9" #replace with actual machine IPs of all the nodes in cluster
./validateUiPathASReadiness.sh \
--node-type server \
--install-type online \
--machines "10.0.1.8, 10.0.1.9" #replace with actual machine IPs of all the nodes in cluster
Offline
./validateUiPathASReadiness.sh \
--node-type server \
--install-type offline \
--prereq-bundle ../as-infra.tar.gz \
--prereq-tmp-folder /opt/UiPathAutomationSuite/tmp \
--machines "10.0.1.8, 10.0.1.9" #replace with actual machine IPs of all the nodes in cluster
./validateUiPathASReadiness.sh \
--node-type server \
--install-type offline \
--prereq-bundle ../as-infra.tar.gz \
--prereq-tmp-folder /opt/UiPathAutomationSuite/tmp \
--machines "10.0.1.8, 10.0.1.9" #replace with actual machine IPs of all the nodes in cluster
cluster_config.json
file under the /opt/UiPathAutomationSuite
folder. This file is required on all the other machines.
cluster_config.json
file on the other machines, run the following command:
scp /opt/UiPathAutomationSuite/cluster_config.json <username>@<node dns>:/opt/UiPathAutomationSuite
scp /opt/UiPathAutomationSuite/cluster_config.json <username>@<node dns>:/opt/UiPathAutomationSuite
/opt/UiPathAutomationSuite
folder due to permission errors, you can temporarily copy it to /var/tmp
on the new machines, and then move it to /opt/UiPathAutomationSuite
.
777
) to the /opt/UiPathAutomationSuite
folder on the new machines, by running the following command: chmod -R 777 /opt/UiPathAutomationSuite
.
To validate the other server machines, run the following command:
Online
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type server \
--install-type online \
--machines "10.0.1.8, 10.0.1.9" #replace with actual machine IP of all the nodes in cluster
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type server \
--install-type online \
--machines "10.0.1.8, 10.0.1.9" #replace with actual machine IP of all the nodes in cluster
Offline
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type server \
--install-type offline \
--prereq-bundle ../as-infra.tar.gz \
--prereq-tmp-folder /opt/UiPathAutomationSuite/tmp \
--machines "10.0.1.8, 10.0.1.9" #replace with actual machine IP of all the nodes in cluster
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type server \
--install-type offline \
--prereq-bundle ../as-infra.tar.gz \
--prereq-tmp-folder /opt/UiPathAutomationSuite/tmp \
--machines "10.0.1.8, 10.0.1.9" #replace with actual machine IP of all the nodes in cluster
To validate the agent machines, run the following command:
Online
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type agent \
--install-type online \
--machines "10.0.1.8, 10.0.1.9" # replace with actual machine IP of all the nodes in cluster
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type agent \
--install-type online \
--machines "10.0.1.8, 10.0.1.9" # replace with actual machine IP of all the nodes in cluster
Offline
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type agent \
--install-type offline \ #replace with offline for airgap
--prereq-bundle ../as-infra.tar.gz \
--prereq-tmp-folder /opt/UiPathAutomationSuite/tmp \
--machines "10.0.1.8, 10.0.1.9" # replace with actual machine IP of all the nodes in cluster
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type agent \
--install-type offline \ #replace with offline for airgap
--prereq-bundle ../as-infra.tar.gz \
--prereq-tmp-folder /opt/UiPathAutomationSuite/tmp \
--machines "10.0.1.8, 10.0.1.9" # replace with actual machine IP of all the nodes in cluster
To validate the Task Mining, GPU, or Automation Suite Robots machines, run the following command:
Make sure to use the suitable parameter to identify your specialized agent node:
- for Task Mining machines, use
--node-type task-mining
- for GPU machines, use
--node-type gpu
- For Automation Suite Robots machines, use
--node-type asrobots
Online
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type task-mining \ #replace with gpu for GPU node or asrobots for Automation Suite Robots node
--install-type online \
--machines "10.0.1.8, 10.0.1.9" # replace with actual machine IP of all the nodes in cluster
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type task-mining \ #replace with gpu for GPU node or asrobots for Automation Suite Robots node
--install-type online \
--machines "10.0.1.8, 10.0.1.9" # replace with actual machine IP of all the nodes in cluster
Offline
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type task-mining \ #replace with gpu for GPU node or asrobots for Automation Suite Robots node
--install-type offline \
--prereq-bundle ../as-infra.tar.gz \
--prereq-tmp-folder /opt/UiPathAutomationSuite/tmp \
--machines "10.0.1.8, 10.0.1.9" # replace with actual machine IP of all the nodes in cluster
./validateUiPathASReadiness.sh \
--input /opt/UiPathAutomationSuite/cluster_config.json \
--node-type task-mining \ #replace with gpu for GPU node or asrobots for Automation Suite Robots node
--install-type offline \
--prereq-bundle ../as-infra.tar.gz \
--prereq-tmp-folder /opt/UiPathAutomationSuite/tmp \
--machines "10.0.1.8, 10.0.1.9" # replace with actual machine IP of all the nodes in cluster