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
- 如何清理 NFS 服务器上的旧差异备份
- 无法获取沙盒映像
- 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年12月4日
生成最新的
cluster_config.json文件,如下所示:
-
选项 A:如果您有旧的
cluster_config.json,请通过在服务器节点上运行以下命令从集群生成配置文件:cd /opt/UiPathAutomationSuite/{version}/installer ./configureUiPathAS.sh config get -i /path/to/old/cluster_config.json -o ./cluster_config.jsoncd /opt/UiPathAutomationSuite/{version}/installer ./configureUiPathAS.sh config get -i /path/to/old/cluster_config.json -o ./cluster_config.json -
选项 B:如果您没有旧的
cluster_config.json文件,请通过在服务器节点上运行以下命令,覆盖在安装先前版本期间产生的任何默认值:cd /opt/UiPathAutomationSuite/{version}/installer ./configureUiPathAS.sh config get -o ./cluster_config.jsoncd /opt/UiPathAutomationSuite/{version}/installer ./configureUiPathAS.sh config get -o ./cluster_config.json
备注:
有关如何配置
cluster_config.json 参数的详细信息,请参阅 高级安装体验。
您必须提供已还原数据库的数据库连接字符串。
-
要将还原的连接字符串提供给 Orchestrator 服务,请在
cluster_config.json文件的orchestrator下添加或更新sql_connection_str:"orchestrator": { "sql_connection_str": "<dotnet connection string>", (added line) "enabled": true }"orchestrator": { "sql_connection_str": "<dotnet connection string>", (added line) "enabled": true } -
如果将测试自动化表放置在独立的 Orchestrator 数据库中,您可以在
cluster_config.json文件中为测试自动化功能添加相同的连接字符串:"orchestrator": { "testautomation": { "enabled": true, "sql_connection_str": "<restored orchesrator connection string>" }, "sql_connection_str": "<restored orchesrator connection string>", (added line) "enabled": true }"orchestrator": { "testautomation": { "enabled": true, "sql_connection_str": "<restored orchesrator connection string>" }, "sql_connection_str": "<restored orchesrator connection string>", (added line) "enabled": true } -
要将还原的连接字符串提供给 Insights 服务,请在
cluster_config.json文件的insights下添加或更新sql_connection_str。"insights": { "sql_connection_str": "<restored connection string>", (added line) "enabled": true }"insights": { "sql_connection_str": "<restored connection string>", (added line) "enabled": true } - 要验证服务是否已成功迁移,请运行以下命令,其中
[service-name]是您要验证的服务:kubectl -n uipath get secret [service-name]-secrets -o jsonpath='{.data.sqlConnectionString}' | base64 --decodekubectl -n uipath get secret [service-name]-secrets -o jsonpath='{.data.sqlConnectionString}' | base64 --decode
注意: 确保对连接字符串密码中的特殊字符进行转义。
在线
要在在线环境中运行服务安装程序,请在服务器节点上运行以下命令:
cd /opt/UiPathAutomationSuite/{version}/installer
./install-uipath.sh -i ./cluster_config.json -s -o output.json --accept-license-agreementcd /opt/UiPathAutomationSuite/{version}/installer
./install-uipath.sh -i ./cluster_config.json -s -o output.json --accept-license-agreement离线
要在离线环境中运行服务安装程序,请在服务器节点上使用以下命令:
cd /opt/UiPathAutomationSuite/{version}/installer
./install-uipath.sh -i ./cluster_config.json -s --install-type offline -o output.json --accept-license-agreementcd /opt/UiPathAutomationSuite/{version}/installer
./install-uipath.sh -i ./cluster_config.json -s --install-type offline -o output.json --accept-license-agreement