automation-suite
2023.10
false
- 概述
- 要求
- 安装
- 安装后
- 迁移和升级
- 监控和警示
- 集群管理
- 特定于产品的配置
- 故障排除
步骤 5:更新已迁移的产品连接字符串
EKS/AKS 上的 Automation Suite 安装指南
Last updated 2024年11月11日
步骤 5:更新已迁移的产品连接字符串
要下载
uipathctl
,请参阅下载安装包。
要生成input.json
配置文件,请执行以下步骤之一:
- 选项 A :生成最新的
input.json
文件:uipathctl manifest get-revision | Out-File -Encoding ascii input.json
uipathctl manifest get-revision | Out-File -Encoding ascii input.json - 选项 B :列出所有过去的
input.json
文件,并确定您要选择的文件:uipathctl manifest list-revisions
uipathctl manifest list-revisions
- 将
versions.json
文件移动到与input.json
相同的目录。 您可以从 Automation Suite 安装文件夹中获取versions.json
。 - 为已安装的产品提供新的连接字符串。
-
要将还原的连接字符串提供给 Orchestrator 服务,请在
input.json
文件的orchestrator
下添加或更新sql_connection_str
:"orchestrator": { "sql_connection_str": "<restored orchesrator connection string>", (added line) "enabled": true }
"orchestrator": { "sql_connection_str": "<restored orchesrator connection string>", (added line) "enabled": true } -
如果将测试自动化表放置在独立的 Orchestrator 数据库中,您还可以在
input.json
文件中为测试自动化功能添加相同的连接字符串:"orchestrator": { "testautomation": { "enabled": true, "sql_connection_str": "<restored orchestrator connection string>" }, "sql_connection_str": "<restored orchestrator connection string>", (added line) "enabled": true }
"orchestrator": { "testautomation": { "enabled": true, "sql_connection_str": "<restored orchestrator connection string>" }, "sql_connection_str": "<restored orchestrator connection string>", (added line) "enabled": true } - 要将还原的连接字符串提供给 Insights 服务,请在
input.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 }
-
- 通过运行安装程序来更新
input.json
文件。- 如要仅迁移 Orchestrator,请运行以下命令:
uipathctl manifest apply input.json --only orchestrator --versions versions.json
uipathctl manifest apply input.json --only orchestrator --versions versions.json - 如要仅迁移 Insights,请运行以下命令:
uipathctl manifest apply input.json --only insights --versions versions.json
uipathctl manifest apply input.json --only insights --versions versions.json
备注:如果在 Windows 上运行该命令,请将命令中的uipathctl
替换为.\uipathctl.exe
。 - 如要仅迁移 Orchestrator,请运行以下命令:
- 重新映射 Insights 表格中的组织 ID。
有关更多详细信息,请参阅重新映射组织 ID。