ai-center
2022.4
true
- 入门指南
- 网络要求
- 单节点要求和安装
- 多节点要求和安装
- 安装后
- 配置 GPU
- 使用配置文件
- 节点调度
- 迁移和升级
- 基本故障排除指南
AI Center 安装指南
Last updated 2024年6月6日
程序
此步骤需要在可访问互联网的计算机上运行,且此计算机可访问将要安装UiPath AI Center的离线环境中的计算机。
注意:此计算机可以是 Linux 或 Windows。提供的步骤将在此计算机上运行。在本文档中,存在针对基于 RHEL 的操作系统的示例。对于 Windows 或其他操作系统版本,请调整特定于这些环境的等效步骤。
在 可访问互联网的单独计算机 上按照以下步骤操作,以获取开始安装过程所需的文件:
- 连接到可访问互联网的计算机并运行以下命令以获取交互式向导文件:
ssh <user>@<dns_of_vm>
ssh <user>@<dns_of_vm> - 如果您使用了 ssh 密钥,请运行以下命令:
ssh -i <path/to/Key.pem> <user>@<dns_of_vm>
ssh -i <path/to/Key.pem> <user>@<dns_of_vm> - 下载以下包:
installUiPathAS.sh
- 必填。有关下载说明,请参阅 installUiPath.as。sf-installer.zip
- 必填。有关下载说明,请参见sf-installer.zip 。sf.tar.gz
- 必填。有关下载说明,请参见 sf.tar.gz。sf-infra.tar.gz
- 可选。仅当您要加入其他节点(包括 Task Mining 和 GPU)时才需使用。有关下载说明,请参阅 sf-infra.tar.gz。du-ondemand.tar.gz
- 可选。仅 Document Understanding 需要。有关下载说明,请参见 du-onDemand.tar.gz。注意:不遵循此可选步骤将限制 Document Understanding 服务的功能。cv-ondemand.tar.gz
- 可选。仅 Computer Vision 需要。有关下载说明,请参见 cv-ondemand.tar.gz。注意:不遵循此可选步骤将阻止访问计算机实具视觉服务。
确保下载适合您的 Automation Suite 版本和操作系统的包。
请务必执行以下步骤:
- 检查所有文件是否已在可访问互联网的计算机上完成下载。
- 在计算机上创建目标文件夹。
- 将文件从联机计算机复制到目标计算机。
通过运行以下命令在集群的主计算机上创建安装文件夹:
sudo su -
mkdir -p /opt/UiPathAutomationSuite/
chmod -R 755 /opt/UiPathAutomationSuite
mkdir -p /uipath/tmp
chmod -R 777 /uipath/tmp
sudo su -
mkdir -p /opt/UiPathAutomationSuite/
chmod -R 755 /opt/UiPathAutomationSuite
mkdir -p /uipath/tmp
chmod -R 777 /uipath/tmp
在 可访问互联网的单独计算机上,将文件复制到第一个节点:
- 从可访问互联网的计算机上,将文件复制到目标计算机上的安装文件夹,并将离线捆绑包复制到
/uipath/tmp
文件夹。scp ~/installUiPathAS.sh ~/sf-installer.zip <username>@<node dns>:/uipath/tmp scp ~/sf.tar.gz <username>@<node dns>:/uipath/tmp/
scp ~/installUiPathAS.sh ~/sf-installer.zip <username>@<node dns>:/uipath/tmp scp ~/sf.tar.gz <username>@<node dns>:/uipath/tmp/ - (可选)要使用 Document Understanding,请将以下捆绑包复制到
/uipath/tmp
文件夹。scp ~/du-ondemand.tar.gz <username>@<node dns>:/uipath/tmp/
scp ~/du-ondemand.tar.gz <username>@<node dns>:/uipath/tmp/注意:不遵循此可选步骤将阻止访问 Document Understanding 服务。 - (可选)要使用计算机视觉,请将以下捆绑包复制到
/uipath/tmp
文件夹。scp ~/cv-ondemand.tar.gz <username>@<node dns>:/uipath/tmp/
scp ~/cv-ondemand.tar.gz <username>@<node dns>:/uipath/tmp/注意:不遵循此可选步骤将阻止访问计算机实具视觉服务。
注意:如果是链式证书,请查看链式证书部分,了解如何正确提供证书。
下载 Orchestrator 证书并将其保存在本地计算机上。您可以使用浏览器执行此操作,也可以要求 IT 部门提供证书。证书必须为 base64 和
.cer
格式。使用以下命令将证书复制到虚拟机。
scp /path/to/orch.cer <username>@<node dns>:/opt/UiPathAutomationSuite
scp /path/to/orch.cer <username>@<node dns>:/opt/UiPathAutomationSuite
使用域颁发的证书时,请确保按如下方式导出根证书:
- 打开证书,转到“证书路径”选项卡,然后选择第一个证书。单击“查看证书”。
- 显示根证书后,转到“详细信息”选项卡,然后单击“复制到文件”。
- 确保选择 base64
cer
文件格式。 - 使用您选择的名称保存,然后将其发送到 AI Center 计算机。
生成的文件应类似于以下示例。
-----BEGIN CERTIFICATE-----
certificate
base64
encoded
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
certificate
base64
encoded
-----END CERTIFICATE-----
- 将以下先决条件添加到当前 PATH:
- 交互式安装程序需要
jq
,已包含在我们的离线捆绑包中。运行以下命令将其添加到路径:(确保您仍然是根用户)mv /uipath/tmp/installUiPathAS.sh /uipath/tmp/sf-installer.zip /opt/UiPathAutomationSuite cd /opt/UiPathAutomationSuite unzip ./sf-installer.zip -d . chmod +x ./bin/jq export PATH=${PATH}:/opt/UiPathAutomationSuite/bin
mv /uipath/tmp/installUiPathAS.sh /uipath/tmp/sf-installer.zip /opt/UiPathAutomationSuite cd /opt/UiPathAutomationSuite unzip ./sf-installer.zip -d . chmod +x ./bin/jq export PATH=${PATH}:/opt/UiPathAutomationSuite/bin
- 交互式安装程序需要
- 提供安装程序文件夹的权限:
- 需要为安装脚本所在且即将在此处执行的
/opt/UiPathAutomationSuite
文件夹提供足够的权限。安装程序还将在每个阶段执行后创建一些文件 (output.json
)。运行以下命令以提供权限:
chmod -R 755 /opt/UiPathAutomationSuite
chmod -R 755 /opt/UiPathAutomationSuite
- 需要为安装脚本所在且即将在此处执行的
- 运行交互式安装向导以配置安装选项:
- 交互式向导将指导您完成配置步骤并生成配置文件,然后可以在剩余的安装步骤中自定义并使用该配置文件。
- 通过运行以下命令,运行脚本以启动交互式向导:
chmod +x ./installUiPathAS.sh ./installUiPathAS.sh
chmod +x ./installUiPathAS.sh ./installUiPathAS.sh - 按照向导中的步骤操作
注意:确保不要从脚本开始安装,并在生成配置文件时退出脚本,否则它将尝试安装完整的 Automation Suite。此脚本主要用于 Automation Suite,显示的信息(产品、要求)与 Automation Suite 相关。在过程的后续步骤中,配置文件将适应我们的需求。
请按照部署配置步骤操作:
- 接受许可协议。
- 选择部署模式:选择“单节点部署”选项。
- 选择“继续”。
- 选择离线安装。
- 输入 DNS 主机名。
- 指定是否要对 SQL 连接使用 Kerberos 身份验证。
- 输入 SQL Server URL。按照提示输入连接端口、用户名和密码。
- 指定是否要让安装程序自动创建必要的数据库。
系统将使用文件夹生成集群配置文件,如下图所示。
注意:生成配置文件和文件夹后,即可退出向导并继续执行以下剩余步骤以完成安装。您可以忽略产品列表,因为我们将在以下步骤中进行更新。
现在已生成
cluster_config.json
文件的第一个版本。我们将根据 AI Center 安装目的更新此文件。
使用编辑器(例如 vi)打开文件:
vi /opt/UiPathAutomationSuite/cluster_config.json
vi /opt/UiPathAutomationSuite/cluster_config.json
替换以下块:
"aicenter": {
"enabled": "false"
},
"aicenter": {
"enabled": "false"
},
注意:如果启用了 AI Center,则默认启用 Document Understanding。
使用以下信息(将
<>
之间的信息替换为您的值):"aicenter": {
"enabled": "true",
"orchestrator_url":"<a href="https://orchestrator-url.com">https://orchestrator-url.com</a>",
"identity_server_url": "<a href="https://orchestrator-url.com/identity">https://orchestrator-url.com/identity</a>",
"orchestrator_cert_file_path": "</opt/UiPathAutomationSuite/orch.cer or custom path>",
"identity_cert_file_path": "</opt/UiPathAutomationSuite/orch.cer or custom path>",
"identity_access_token": "<placeholder will be replaced later>"
},
"aicenter": {
"enabled": "true",
"orchestrator_url":"<a href="https://orchestrator-url.com">https://orchestrator-url.com</a>",
"identity_server_url": "<a href="https://orchestrator-url.com/identity">https://orchestrator-url.com/identity</a>",
"orchestrator_cert_file_path": "</opt/UiPathAutomationSuite/orch.cer or custom path>",
"identity_cert_file_path": "</opt/UiPathAutomationSuite/orch.cer or custom path>",
"identity_access_token": "<placeholder will be replaced later>"
},
您可以在
UiPathAutomationSuite
文件夹中找到 cluster_config.json
文件。您可以使用此文件配置 SQL DB 及其各自的连接字符串和证书。如果您使用代理进行互联网连接,也可以启用代理设置。
请注意,对于单节点安装,您无法启用高可用性。
有关高级配置,请参阅使用配置文件。
- 运行基础架构安装程序。
转到
UiPath_Installer
文件夹,并使用 AI Center 独立标志运行基础架构安装程序。/opt/UiPathAutomationSuite ./install-uipath.sh -i cluster_config.json -o output.json --offline-bundle "/uipath/tmp/sf.tar.gz" --offline-tmp-folder /uipath/tmp --accept-license-agreement --install-offline-prereqs --install-standalone-aicenter -k
/opt/UiPathAutomationSuite ./install-uipath.sh -i cluster_config.json -o output.json --offline-bundle "/uipath/tmp/sf.tar.gz" --offline-tmp-folder /uipath/tmp --accept-license-agreement --install-offline-prereqs --install-standalone-aicenter -k - 安装 Fabric(软件组件)。
使用 AI Center 独立标志运行安装程序。
./install-uipath.sh -i cluster_config.json -o output.json --offline-bundle "/uipath/tmp/sf.tar.gz" --offline-tmp-folder /uipath/tmp --accept-license-agreement --install-offline-prereqs --install-standalone-aicenter -f
./install-uipath.sh -i cluster_config.json -o output.json --offline-bundle "/uipath/tmp/sf.tar.gz" --offline-tmp-folder /uipath/tmp --accept-license-agreement --install-offline-prereqs --install-standalone-aicenter -f - 运行软件安装程序。
首先,您需要连接到身份服务器并检索安装令牌。然后复制此令牌并将其粘贴到步骤 3.2 中的占位符中。(在 cluster_config.json 文件中)。 获得令牌后,您就可以运行 AI Center 安装程序。
./install-uipath.sh -i cluster_config.json -o output.json --offline-bundle /uipath/tmp/sf.tar.gz --accept-license-agreement --install-standalone-aicenter --offline-tmp-folder /uipath/tmp -s
./install-uipath.sh -i cluster_config.json -o output.json --offline-bundle /uipath/tmp/sf.tar.gz --accept-license-agreement --install-standalone-aicenter --offline-tmp-folder /uipath/tmp -s - 加载可选的 Document Understanding 捆绑包命令。
要加载可选的 Document Understanding 捆绑包,请执行以下命令。确保使用需要加载的捆绑包名称。
./install-uipath.sh -i ./cluster_config.json -o ./output.json /configureUiPathAS.sh registry upload --optional-offline-bundle "/uipath/tmp/cv-ondemand.tar.gz" --offline-tmp-folder "/uipath/tmp" --accept-license-agreement
./install-uipath.sh -i ./cluster_config.json -o ./output.json /configureUiPathAS.sh registry upload --optional-offline-bundle "/uipath/tmp/cv-ondemand.tar.gz" --offline-tmp-folder "/uipath/tmp" --accept-license-agreement - 加载可选的 Computer Vision 捆绑包命令。
要加载可选的计算机视觉捆绑包,请执行以下命令:
./install-uipath.sh -i ./cluster_config.json -o ./output.json /configureUiPathAS.sh registry upload --optional-offline-bundle "/uipath/tmp/cv-ondemand.tar.gz" --offline-tmp-folder "/uipath/tmp" --accept-license-agreement
./install-uipath.sh -i ./cluster_config.json -o ./output.json /configureUiPathAS.sh registry upload --optional-offline-bundle "/uipath/tmp/cv-ondemand.tar.gz" --offline-tmp-folder "/uipath/tmp" --accept-license-agreement