automation-suite
2023.4
false
- 概述
- 要求
- 安装
- 安装后
- 集群管理
- 监控和警示
- 迁移和升级
- 特定于产品的配置
- 最佳实践和维护
- 故障排除
步骤 5:更新已迁移的产品连接字符串
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
Linux 版 Automation Suite 安装指南
Last updated 2024年9月5日
步骤 5:更新已迁移的产品连接字符串
生成最新的
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.json
cd /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.json
cd /opt/UiPathAutomationSuite/{version}/installer ./configureUiPathAS.sh config get -o ./cluster_config.json
备注:
有关如何配置
cluster_config.json
参数的详细信息,请参阅 高级安装体验。
您必须提供已还原数据库的数据库连接字符串。
-
要将已还原的连接字符串提供给 Orchestrator 服务,请在
sql_connection_str
orchestrator
文cluster_config.json
件中的 下添加或更新 :"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 }
注意: 确保对连接字符串密码中的特殊字符进行转义。
要在在线环境中运行服务安装程序,请在服务器节点上运行以下命令:
cd /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 -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-agreement
cd /opt/UiPathAutomationSuite/{version}/installer
./install-uipath.sh -i ./cluster_config.json -s --install-type offline -o output.json --accept-license-agreement