Orchestrator
2020.10
バナーの背景画像
サポート対象外
Orchestrator インストール ガイド
最終更新日 2023年12月12日

Orchestrator/Identity Server の URL を変更する

Orchestrator インスタンスをシングル ノードからマルチノードに手動でアップグレードする際は、Orchestrator URLを変更する必要があります。この場合、Identity Server の URL も変更する必要があります。

Orchestrator または Identity Server のパブリック アドレスを変更する際は、Orchestrator の機能を完全に保持するためにいくつかの手順が必要です。このページではこれらの手順について説明します。

Identity Server の URL を変更する

Identity Server の URL を更新するには、以下の SQL クエリを実行します。

  1. 現在のサーバー名と新しいサーバー名の変数を宣言します。

    DECLARE @CurrentServerName NVARCHAR(255) = 'server1';

    - 入力例: 'server1'

    DECLARE @NewServerName NVARCHAR(255) = 'server2';

    - 入力例: 'server2'

  2. 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' が含まれる場合にのみ更新します。

Orchestrator の URL を変更する

  1. Identity Server データベース内の ClientRedirectUris テーブルを開き、https://[OldOrchestratorAddress]/signinsystemopenidconnect の値を持つ [RedirectUri] フィールドを探します。この値を https://[NewOrchestratorAddress]/signinsystemopenidconnect に変更します。
  2. Identity Server データベース内の ClientPostLogoutRedirectUris テーブルを開き、https://[OldOrchestratorAddress]/ の値を持つ [PostLogoutRedirectUri] フィールドを探します。この値を https://[NewOrchestratorAddress]/ に変更します。
  3. Identity Server の appsettings.Production.json ファイル内の OrchestratorUrl パラメーターを、Orchestrator の新しいパブリック アドレスで更新します。
  4. Orchestrator の UiPath.Orchestrator.dll.config (以前の web.config) 内のパラメーター ExternalAuth.System.OpenIdConnect.RedirectUri を、新しい値 https://[NewOrchestratorAddress]/signinsystemopenidconnect で更新します。
  5. Orchestrator の UiPath.Orchestrator.dll.config (以前の web.config) 内のパラメーター ExternalAuth.System.OpenIdConnect.PostLogoutRedirectUri を、新しい値 https://[NewOrchestratorAddress]/ で更新します。
    注:
    • 上記の [OldOrchestratorAddress] と [NewOrchestratorAddress] は実際にお使いの Orchestrator URL アドレスに置き換えて理解してください。
    • 内部サーバー エラーを防ぐには、使用する証明書に適切な権限一式が設定されている必要があります。詳細については、「証明書のトラブルシューティング」をご覧ください。
    • プラットフォーム構成ツールを使用すると、別の方法で Orchestrator の URL を変更できます。

Was this page helpful?

サポートを受ける
RPA について学ぶ - オートメーション コース
UiPath コミュニティ フォーラム
UiPath ロゴ (白)
信頼とセキュリティ
© 2005-2024 UiPath. All rights reserved.