- 概述
- 要求
- 安装
- 安装后
- 集群管理
- 监控和警示
- 迁移和升级
- 特定于产品的配置
- 最佳实践和维护
- 故障排除
验证多节点 HA 就绪生产设置中的先决条件
validateUiPathASReadiness.sh
脚本评估您的环境并生成摘要。
验证 |
描述 |
---|---|
硬件要求 |
验证集群中的每台计算机是否满足硬件要求。检查时考虑以下方面:
|
磁盘分区和配置 |
验证您是否正确对磁盘进行了分区和配置。检查时考虑以下方面:
|
SQL Server 连接 |
验证与已配置的 SQL Server 和数据库的连接。 检查时考虑以下方面:
|
服务器证书 |
检查您提供的服务器证书是否有效。 检查时考虑以下方面:
|
令牌签名证书 |
检查您提供的令牌签名证书是否有效。 检查时考虑以下方面:
|
代理 |
验证您是否正确配置了代理。 检查时考虑以下方面:
|
连接性 |
验证所有计算机是否可以相互连接,所有必需的 URL 是否都在防火墙允许列表中,等等。 检查时考虑以下方面:
|
系统服务 |
验证系统服务是否已正确配置。 检查时考虑以下方面:
|
软件要求 |
验证是否已安装所有必需的软件。 如果未安装某些软件,
install-uipath.sh 安装程序将尝试安装该软件。
|
升级 |
验证跨 Automation Suite 版本的升级路径是否正确。 |
as-installer.zip
的存档中,支持工具捆绑为as-infra.tar.gz
,仅供离线使用。 您需要这些文件来生成有关计划安装 Automation Suite 的所有计算机的报告。
安装类型 |
要下载的文件 |
---|---|
在线 |
as-installer.zip – 必填。有关下载说明,请参阅 as-installer.zip。
|
离线 |
as-installer.zip – 必填。有关下载说明,请参阅 as-installer.zip。
as-infra.tar.gz – 必填。有关下载说明,请参阅 as-infra.tar.gz。
|
-
通过运行以下命令成为根用户:
sudo su -
sudo su - -
运行以下命令,将文件复制到
/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}
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 as-installer.zip -d installer
unzip as-installer.zip -d installer -
通过运行以下命令分配必要的权限并导航到脚本文件夹:
chmod -R 755 installer cd installer
chmod -R 755 installer cd installer
要查看帮助部分和支持的标志,请运行以下命令:
./validateUiPathASReadiness.sh --help
./validateUiPathASReadiness.sh --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
***************************************************************************************
***************************************************************************************
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
***************************************************************************************
下表描述了运行脚本时可以使用的参数:
参数 |
描述 |
---|---|
|
接受
cluster_config.json 文件作为输入。 此文件定义应用于通过 Automation Suite 部署的 UiPath 服务的参数、设置和首选项。 有关详细信息,请参阅 高级安装体验。
如果您不提供此文件,则脚本将触发交互式体验以收集这些输入。 然后,系统将代表您生成该文件。 |
|
调试模式,以获取有助于调试的其他详细信息。 |
|
接受所有计算机的以逗号分隔的 IP 地址/主机名。 这是检查所需端口上所有节点之间的连接性所必需的。 对于多节点 HA 就绪生产安装,必须使用该参数。除此之外,如果您计划在单节点评估集群中添加 Task Mining、GPU 或 Automation Suite Robot 节点,则也必须使用该参数。 |
|
接受当前节点的类型。 可能的值包括:
server 、 agent 、 task-mining 、 gpu 和asrobots 。
默认值为
server 。
|
|
接受安装方法:
online 或offline 。
默认值为
online 。
|
|
接受
as-infra.tar.gz 所在的绝对路径。
|
|
接受将临时提取
as-infra.tar.gz 捆绑包的绝对路径。 如果未提供此路径,则安装程序将选择/tmp 文件夹。
|
|
指定 kubeconfig 文件的路径。 |
|
验证所需的 RPM 包。 |
|
安装在线安装所需的 RPM 包。 |
|
安装离线安装所需的 RPM 包。 |
- 要验证第一台服务器计算机,请运行以下命令:
在线
./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
离线
./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
/opt/UiPathAutomationSuite
文件夹下生成一个cluster_config.json
文件。 所有其他计算机上都需要此文件。
cluster_config.json
文件,请运行以下命令:
scp /opt/UiPathAutomationSuite/cluster_config.json <username>@<node dns>:/opt/UiPathAutomationSuite
scp /opt/UiPathAutomationSuite/cluster_config.json <username>@<node dns>:/opt/UiPathAutomationSuite
/opt/UiPathAutomationSuite
文件夹,则可以将其临时复制到新计算机上的/var/tmp
,然后将其移动到/opt/UiPathAutomationSuite
。
/opt/UiPathAutomationSuite
文件夹的完全访问权限 ( 777
): chmod -R 777 /opt/UiPathAutomationSuite
。
要验证其他服务器计算机,请运行以下命令:
在线
./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
离线
./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
要验证代理计算机,请运行以下命令:
在线
./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
离线
./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
要验证 Task Mining、GPU 或 Automation Suite Robot 计算机,请运行以下命令:
确保使用合适的参数来标识您的专用代理节点:
- 对于 Task Mining 计算机,请使用
--node-type task-mining
- 对于 GPU 计算机,请使用
--node-type gpu
- 对于 Automation Suite 机器人计算机,请使用
--node-type asrobots
在线
./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
离线
./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