automation-suite
2023.4
false
- 概述
- 要求
- 安装
- 安装后
- 集群管理
- 监控和警示
- 迁移和升级
- 特定于产品的配置
- 最佳实践和维护
- 故障排除
- 如何在安装过程中对服务进行故障排除
- 如何卸载集群
- 如何清理离线工件以改善磁盘空间
- 如何清除 Redis 数据
- 如何启用 Istio 日志记录
- 如何手动清理日志
- 如何清理存储在 sf-logs 存储桶中的旧日志
- 如何禁用 AI Center 的流日志
- 如何对失败的 Automation Suite 安装进行调试
- 如何在升级后从旧安装程序中删除映像
- 如何自动清理 Longhorn 快照
- 如何禁用 TX 校验和卸载
- 如何手动将 ArgoCD 日志级别设置为 Info
- 如何为外部注册表生成已编码的 pull_secret_value
- 如何解决 TLS 1.2 中的弱密码问题
- 如何使用证书
- 如何使用集群内对象存储 (Ceph) 收集 DU 使用情况数据
- 如何在离线环境中安装 RKE2 SELinux
- How to clean up old differential backups on an NFS server
- 无法获取沙盒映像
- Pod 未显示在 ArgoCD 用户界面中
- Redis 探测器失败
- RKE2 服务器无法启动
- 在 UiPath 命名空间中找不到密码
- ArgoCD 在首次安装后进入“进行中”状态
- 访问 ArgoCD 只读帐户时出现问题
- MongoDB Pod 处于 CrashLoopBackOff 状态或在删除后处于“等待 PVC 配置”状态
- 集群还原或回滚后服务运行状况不佳
- Pod 在 Init:0/X 中卡住
- Prometheus 处于 CrashLoopBackoff 状态,并出现内存不足 (OOM) 错误
- 监控仪表板中缺少 Ceph-rook 指标
- Pod 无法在代理环境中与 FQDN 通信
- 无法配置升级后的电子邮件警示
- 无正常的上游问题
- 使用 Automation Suite 诊断工具
- 使用 Automation Suite 支持捆绑包
- 探索日志
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Linux 版 Automation Suite 安装指南
上次更新日期 2025年11月13日
You can convert an existing installation into multi-site by taking the following steps:
-
Convert the standalone Automation Suite cluster into the primary cluster. For details, see Converting a standalone cluster into a primary cluster.
-
安装辅助 Automation Suite 集群。有关详细信息,请参阅 Disaster Recovery - 安装辅助集群。
Note: Ensure that the certificates are the same on the primary and secondary clusters. This check is not performed or enforced automatically.
要将现有的 Automation Suite 集群转换为多站点部署的主集群,请执行以下步骤:
-
在第一个服务器节点上添加或修改所需的
cluster_config.json参数。有关更多详细信息,请参阅高级安装体验。{ "fabric": { "redis": { "ha": true, "license": "xyz" //base64 encoded redis license } }, "cluster_fqdn": "automationsuite-primary.mycompany.com", "multisite": { "enabled": true, "primary": true, "other_site_kubeconfig": xxx, //another cluster kubeconfig }, "fixed_rke_address": "automationsuite-primary.mycompany.com" }{ "fabric": { "redis": { "ha": true, "license": "xyz" //base64 encoded redis license } }, "cluster_fqdn": "automationsuite-primary.mycompany.com", "multisite": { "enabled": true, "primary": true, "other_site_kubeconfig": xxx, //another cluster kubeconfig }, "fixed_rke_address": "automationsuite-primary.mycompany.com" }备注:建议保留现有 Automation Suite 设置的 FQDN,以避免重新配置所有机器人。
在线
在第一个服务器节点上配置基础架构
-
导航到安装程序文件夹:
cd /opt/UiPathAutomationSuite/{version}/installercd /opt/UiPathAutomationSuite/{version}/installer -
在第一个服务器节点上运行以下命令:
./install-uipath.sh -i cluster_config.json -o output.json -k --skip-compare-config --force-update-fqdn --accept-license-agreement./install-uipath.sh -i cluster_config.json -o output.json -k --skip-compare-config --force-update-fqdn --accept-license-agreement
在其余集群节点上配置基础架构
-
导航到安装程序文件夹:
cd /opt/UiPathAutomationSuite/{version}/installercd /opt/UiPathAutomationSuite/{version}/installer -
将
cluster_config.json文件从第一个服务器节点复制到所有其他节点。 -
在所有其他节点上运行以下命令:
./install-uipath.sh -i cluster_config.json -o output.json -k -j <node_type> --skip-compare-config --force-update-fqdn --accept-license-agreement./install-uipath.sh -i cluster_config.json -o output.json -k -j <node_type> --skip-compare-config --force-update-fqdn --accept-license-agreement备注:将<node_type>替换为适当的节点类型:-
server– 适用于其他服务器节点 -
agent– 适用于代理节点 -
task-mining– 适用于 Task Mining 节点 -
gpu– 适用于 GPU 节点 -
asrobots– 用于 Automation Suite 机器人节点
-
在第一个服务器节点上配置结构和服务
要在第一个服务器节点上配置结构和服务,请运行以下命令:
./install-uipath.sh -i cluster_config.json -o output.json -f -s --skip-compare-config --force-update-fqdn --accept-license-agreement./install-uipath.sh -i cluster_config.json -o output.json -f -s --skip-compare-config --force-update-fqdn --accept-license-agreement离线
在第一个服务器节点上配置基础架构
-
导航到安装程序文件夹:
cd /opt/UiPathAutomationSuite/{version}/installercd /opt/UiPathAutomationSuite/{version}/installer -
在第一个服务器节点上运行以下命令:
./install-uipath.sh -i cluster_config.json -o output.json -k --offline-bundle ./sf-infra.tar.gz --offline-tmp-folder /uipath/tmp --skip-compare-config --force-update-fqdn --accept-license-agreement./install-uipath.sh -i cluster_config.json -o output.json -k --offline-bundle ./sf-infra.tar.gz --offline-tmp-folder /uipath/tmp --skip-compare-config --force-update-fqdn --accept-license-agreement
在其余集群节点上配置基础架构
-
导航到安装程序文件夹:
cd /opt/UiPathAutomationSuite/{version}/installercd /opt/UiPathAutomationSuite/{version}/installer -
将
cluster_config.json文件从第一个服务器节点复制到所有其他节点。 -
在所有其他节点上运行以下命令:
./install-uipath.sh -i cluster_config.json -o output.json -k -j <node_type> --offline-bundle ./sf-infra.tar.gz --offline-tmp-folder /uipath/tmp --accept-license-agreement./install-uipath.sh -i cluster_config.json -o output.json -k -j <node_type> --offline-bundle ./sf-infra.tar.gz --offline-tmp-folder /uipath/tmp --accept-license-agreement备注:将<node_type>替换为适当的节点类型:-
server– 适用于其他服务器节点 -
agent– 适用于代理节点 -
task-mining– 适用于 Task Mining 节点 -
gpu– 适用于 GPU 节点 -
asrobots– 用于 Automation Suite 机器人节点
-
在第一个服务器节点上配置结构和服务
要在第一个服务器节点上配置结构和服务,请运行以下命令:
./install-uipath.sh -i cluster_config.json -o output.json -f -s --install-type offline --skip-compare-config --force-update-fqdn --accept-license-agreement./install-uipath.sh -i cluster_config.json -o output.json -f -s --install-type offline --skip-compare-config --force-update-fqdn --accept-license-agreement