orchestrator
2022.10
false
- 基本情報
- 要件
- ベスト プラクティス
- インストール
- 更新
- Elasticsearch インデックスを移行する
- Orchestrator/Identity Server の URL を変更する
- Windows インストーラーを使用して更新する
- Azure スクリプトを使用して更新する
- Identity Server
- 起動エラーのトラブルシューティング
Orchestrator/Identity Server の URL を変更する
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

Orchestrator インストール ガイド
Orchestrator/Identity Server の URL を変更する
Orchestrator / Identity Server インスタンスをシングル ノードからマルチノードに手動でアップグレードする際は、Orchestrator / Identity Server URL を変更する必要があります。Orchestrator / Identity Server の URL の変更が必要になるのは、マルチノードでのインストールでロード バランサーの URL を使用する場合です。この URL はノード名とは無関係であるためです。
シングルノードでのインストールをロード バランサーで使用するように構成している場合、マルチノードでのインストールにアップグレードする際にパブリック URL を変更する必要はありません。
Orchestrator または Identity Server のパブリック アドレスを変更する際は、Orchestrator の機能を完全に保持するためにいくつかの手順が必要です。このページではこれらの手順について説明します。
Orchestrator/Identity Server の URL を更新するには、以下の SQL クエリに従ってください。このクエリでは、まず現在のサーバー名と新しいサーバー名の変数を宣言してから、
REPLACE
関数を使用してステートメントを更新します。
-- Declare variables for the current server name and the new server name
DECLARE @CurrentServerName NVARCHAR(255) = 'server1'; -- Input: e.g., 'server1'
DECLARE @NewServerName NVARCHAR(255) = 'server2'; -- Input: e.g., 'server2'
-- Update statement using REPLACE function
UPDATE [identity.ClientRedirectUris]
SET [RedirectUri] = REPLACE([RedirectUri], @CurrentServerName, @NewServerName)
WHERE [RedirectUri] LIKE '%' + @CurrentServerName + '%'; -- Update only if the row contains 'server1'
UPDATE [identity].[ClientPostLogoutRedirectUris]
SET [PostLogoutRedirectUri] = REPLACE([PostLogoutRedirectUri], @CurrentServerName, @NewServerName)
WHERE [PostLogoutRedirectUri] LIKE '%' + @CurrentServerName + '%'; -- Update only if the row contains 'server1'
-- Declare variables for the current server name and the new server name
DECLARE @CurrentServerName NVARCHAR(255) = 'server1'; -- Input: e.g., 'server1'
DECLARE @NewServerName NVARCHAR(255) = 'server2'; -- Input: e.g., 'server2'
-- Update statement using REPLACE function
UPDATE [identity.ClientRedirectUris]
SET [RedirectUri] = REPLACE([RedirectUri], @CurrentServerName, @NewServerName)
WHERE [RedirectUri] LIKE '%' + @CurrentServerName + '%'; -- Update only if the row contains 'server1'
UPDATE [identity].[ClientPostLogoutRedirectUris]
SET [PostLogoutRedirectUri] = REPLACE([PostLogoutRedirectUri], @CurrentServerName, @NewServerName)
WHERE [PostLogoutRedirectUri] LIKE '%' + @CurrentServerName + '%'; -- Update only if the row contains 'server1'
Orchestrator の
UiPath.Orchestrator.dll.config
内にある IdentityServer.Integration.Authority
パラメーターが、Identity Server の正しいパブリック アドレスを正確に指していることを確認します。
UiPath.Orchestrator.dll.config 内の Identity Server アプリの設定について詳しくは、こちらをご覧ください。