UiPath Documentation
orchestrator
2025.10
true
Orchestrator インストール ガイド
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。 新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

リソース カタログのスクリプト

リソース カタログをデプロイまたは更新するための Publish-ResourceCatalog.ps1 スクリプトのパラメーターと使用法

リソース カタログにパブリッシュする

次の表で、Publish-ResourceCatalog.ps1 スクリプトで使用できるすべてのパラメーターについて説明します。

パラメーター

説明

-action

Mandatory .

Indicates the type of scenario you want to start. The following options are available:

  • Deploy – クリーン インストールとして指定します。
  • Update – リソース カタログ インスタンスの更新中であることを指定します。

-package

Mandatory .

UiPath.ResourceCatalogService-Win64.zip アーカイブのフル パスまたは相対パスを指定します。

-azureAccountPassword

必須。サービス プリンシパル ID の Azure トークン パスワード。

-azureSubscriptionId

必須。App Service の Azure サブスクリプション ID。

-azureAccountTenantId

必須。Azure テナント ID。

-resourceGroupName

必須。リソース カタログの App Service を含む Azure リソース グループの名前。

-appServiceName

必須。リソース カタログの Azure App Service の名前。

-noAzureAuthentication

Optional. Allows you to publish to the Azure App Service by relying on your own user identity, without having to create a service principal.

If this parameter is used, the UseServicePrincipal parameter set (which includes items such as the Azure application ID, password, subscription ID, and tenant ID) are no longer necessary.

-azureUSGovernmentLogin 任意です。このパラメーターは、米国政府機関のデプロイにのみ使用されます。

Publish-ResourceCatalog.ps1 スクリプトは、初期デプロイまたはリソース カタログの更新に使用されます。このスクリプトは、Web アプリで既にデータベースの接続文字列 DefaultConnection を設定済みであることを前提としています。

.\Publish-ResourceCatalog.ps1 
-action deploy 
-package ".\UiPath.ResourceCatalogService-Win64.zip" 
-azureAccountApplicationId "<azure_application_id>" 
-azureAccountPassword "<azure_account_password>" 
-azureSubscriptionId "<subscription_id>" 
-azureAccountTenantId "<azure_tenant_id>" 
-resourceGroupName "<resourcegroup_name>" 
-appServiceName "<appservice_name>"
.\Publish-ResourceCatalog.ps1 
-action deploy 
-package ".\UiPath.ResourceCatalogService-Win64.zip" 
-azureAccountApplicationId "<azure_application_id>" 
-azureAccountPassword "<azure_account_password>" 
-azureSubscriptionId "<subscription_id>" 
-azureAccountTenantId "<azure_tenant_id>" 
-resourceGroupName "<resourcegroup_name>" 
-appServiceName "<appservice_name>"

リソース カタログに移行する

次の表で、MigrateTo-ResourceCatalog.ps1 スクリプトで使用できるすべてのパラメーターについて説明します。

パラメーター

説明

-cliPackage

Mandatory .

UiPath.ResourceCatalogService.CLI-Win64.zip アーカイブへのパスを指定します。

-azureDetails

次の値を持つハッシュ テーブルです。

  • azureAccountApplicationIdMandatory .

    The Azure service principal ID..

  • azureAccountPassword必須です。サービス プリンシパル ID の Azure トークン パスワード。
  • azureSubscriptionIdMandatory .

    それぞれの App Service に対する Azure のサブスクリプション ID です。

  • azureAccountTenantId必須です。Azure テナント ID。

-orchDetails

次の値を持つハッシュ テーブルです。

  • resourceGroupNameMandatory .

    The name of the Azure Resource Group that contains the Orchestrator App Service.

  • appServiceName必須です。Orchestrator の App Service の名前。
  • targetSlotMandatory .

    The Target App Service Slot set by Azure.

-resourceCatalogDetails

次の値を持つハッシュ テーブルです。

  • resourceGroupNameMandatory .

    The name of the Azure Resource Group that contains the Resource Catalog App Service.

  • appServiceName必須です。リソース カタログの App Service の名前。
  • targetSlotMandatory .

    The Target App Service Slot set by Azure.

-resourceCatalogUrl

このプロパティは必須です。 リソース カタログのパブリック アドレス。

-identityServerUrl

必須。Identity Server の URL です。

Important: The URL must contain the Identity Server address + the suffix /identity .

例: https://[IdentityServer]/identity

-noAzureAuthentication

Optional. Allows you to publish to the Azure App Service by relying on your own user identity, without having to create a service principal.

If this parameter is used, the UseServicePrincipal parameter set (which includes items such as the Azure application ID, password, subscription ID, and tenant ID) are no longer necessary.

-orchestratorUrl

Mandatory .

The Orchestrator public URL.

MigrateTo-ResourceCatalog.ps1 スクリプトは、Orchestrator からリソース カタログへのユーザー データの移行に使用されます。データベース構造を作成し、関連するアプリ設定を追加します。

このスクリプトは Orchestrator とリソース カタログがパブリッシュ済みであることを前提としています。

.\MigrateTo-ResourceCatalog.ps1 
-cliPackage ".\UiPath.ResourceCatalogService.CLI-Win64.zip" 
-azureDetails @{ azureSubscriptionId = "<subscription_id>"; azureAccountTenantId = "<azure_tenant_id>"; azureAccountApplicationId = "<azure_application_id>"; azureAccountPassword = "<azure_account_password>" } 
-orchDetails @{ resourceGroupName = "<resourcegroup_name>"; appServiceName = "<appservice_name>"; targetSlot = "Production" } 
-resourceCatalogDetails @{ resourceGroupName = "<resourcegroup_name>"; appServiceName = "<appservice_name>"; targetSlot = "Production"} 
-resourceCatalogUrl "https://<ResourceCatalogURL>" 
-identityServerUrl "https://<IdentityServerURL>/identity" -orchestratorUrl "https://<OrchestratorURL>"
.\MigrateTo-ResourceCatalog.ps1 
-cliPackage ".\UiPath.ResourceCatalogService.CLI-Win64.zip" 
-azureDetails @{ azureSubscriptionId = "<subscription_id>"; azureAccountTenantId = "<azure_tenant_id>"; azureAccountApplicationId = "<azure_application_id>"; azureAccountPassword = "<azure_account_password>" } 
-orchDetails @{ resourceGroupName = "<resourcegroup_name>"; appServiceName = "<appservice_name>"; targetSlot = "Production" } 
-resourceCatalogDetails @{ resourceGroupName = "<resourcegroup_name>"; appServiceName = "<appservice_name>"; targetSlot = "Production"} 
-resourceCatalogUrl "https://<ResourceCatalogURL>" 
-identityServerUrl "https://<IdentityServerURL>/identity" -orchestratorUrl "https://<OrchestratorURL>"
注:

リソース カタログ サービスをアップグレードするときには、 MigrateTo-ResourceCatalog.ps1 スクリプトを実行する必要があります。

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

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得