orchestrator
2022.10
false
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。 新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
UiPath logo, featuring letters U and I in white

Orchestrator installation guide

最終更新日時 2025年2月13日

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 と Identity Server の設定ファイルを更新する

Make sure that the IdentityServer.Integration.Authority parameter within the Orchestrator's UiPath.Orchestrator.dll.config is accurately pointing to the correct Identity Server public address.

このページは役に立ちましたか?

サポートを受ける
RPA について学ぶ - オートメーション コース
UiPath コミュニティ フォーラム
Uipath Logo White