orchestrator
2020.10
false
- 入门指南
- 要求
- 最佳实践
- 安装
- 正在更新
- 迁移 Elasticsearch 索引
- 更改 Orchestrator/身份服务器 URL
- 使用 Windows 安装程序更新
- 使用 Azure 脚本进行更新
- 身份服务器
- High Availability Add-On
更改 Orchestrator/身份服务器 URL
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
不在支持范围内
Orchestrator 安装指南
Last updated 2023年12月12日
更改 Orchestrator/身份服务器 URL
如果您决定手动将 Orchestrator 实例从单个节点升级到多节点,则必须更改 Orchestrator URL。如果是这种情况,您还必须更改身份服务器的 URL。
更改 Orchestrator 或身份服务器公共地址时需要几个步骤,以便保持 Orchestrator 的完整功能。本页介绍这些步骤。
要更新 Identity Server URL,请执行以下 SQL 查询:
-
声明表示当前服务器名称和新服务器名称的变量:
DECLARE @CurrentServerName NVARCHAR(255) = 'server1';
- 输入:例如“server1”
DECLARE @NewServerName NVARCHAR(255) = 'server2';
- 输入:例如“server2”
-
使用
REPLACE
函数更新语句:UPDATE identity.ClientRedirectUris
SET RedirectUri = REPLACE(RedirectUri, @CurrentServerName, @NewServerName)
WHERE RedirectUri LIKE '%' + @CurrentServerName + '%';
- 仅当行中包含“server1”时才更新
UPDATE identity.ClientPostLogoutRedirectUris
SET RedirectUri = REPLACE(RedirectUri, @CurrentServerName, @NewServerName)
WHERE RedirectUri LIKE '%' + @CurrentServerName + '%';
- 仅当行中包含“server1”时才更新
- 打开身份服务器数据库中的 ClientRedirectUris 表格,并找到具有
https://[OldOrchestratorAddress]/signinsystemopenidconnect
值的[RedirectUri]
字段。将值更改为https://[NewOrchestratorAddress]/signinsystemopenidconnect
。 - 打开身份服务器数据库中的 ClientPostLogoutRedirectUris 表格,并找到具有
https://[OldOrchestratorAddress]/
值的[PostLogoutRedirectUri]
字段。将值更改为https://[NewOrchestratorAddress]/
。 - 将身份服务器 appsettings.Production.json 文件中的
OrchestratorUrl
参数更新为 Orchestrator 的新公共地址。 - 将 Orchestrator 的 UiPath.Orchestrator.dll.config (先前为
web.config
)中的ExternalAuth.System.OpenIdConnect.RedirectUri
参数更新为新值https://[NewOrchestratorAddress]/signinsystemopenidconnect
。 -
使用新值
https://[NewOrchestratorAddress]/
更新 Orchestrator 的 UiPath.Orchestrator.dll.config (先前为web.config
)中的ExternalAuth.System.OpenIdConnect.PostLogoutRedirectUri
参数。