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

製品を管理する

クラスター構成を更新することで、インストール後に Automation Suite 製品を有効化または無効化します。

Automation Suite の製品は、インストール後、いつでも有効化および無効化できます。

そのためには、/opt/UiPathAutomationSuite フォルダーに保存されている cluster_config.json ファイルにアクセスして更新し、インストーラーの手順を再実行する必要があります。

注:

これらの手順はサーバー ノードからのみ実行する必要があります。

重要:

Automation Suite のアップグレード中に製品を有効化または無効化することはできません。

手順 1: 構成ファイル内の製品選択を変更する

  1. 構成ファイルで製品選択を変更します。

    そのためには UiPathAutomationSuite フォルダーに移動し cluster_config.json を編集します。

    cd /opt/UiPathAutomationSuite
    nano cluster_config.json #optionally use any favourite editor of your choice
    cd /opt/UiPathAutomationSuite
    nano cluster_config.json #optionally use any favourite editor of your choice
    
  2. サービス リストで、有効化または無効化する特定のサービスの enable フラグを true または false に設定します。

    注:

    enable フラグを更新するだけで Action Center と Apps を管理できます。その他の製品では、インストールを構成するための追加手順が必要になる場合があります。詳しくは、以下の手順をご覧ください。

    次の例では、個々の製品の構成の詳細を示します。

Action Center を有効化または無効化する

cluster_config.json ファイルで Action Center を有効化または無効化するには、次の設定の詳細をご覧ください。

"actioncenter": {
  "enabled": "true" //Set to "false" to disable the Action Center
}
"actioncenter": {
  "enabled": "true" //Set to "false" to disable the Action Center
}

Apps を有効化または無効化する

Apps では、enable フラグと SQL データベースを更新する必要があります。

以前に cluster_config.jsonsql_connection_string_template_odbc の値を設定していた場合、既定のデータベース名は AutomationSuite_Apps です。

既定のデータベース名を変更するには、Apps フィールド内の sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template_odbc に設定されている接続文字列テンプレートが上書きされます。

cluster_config.json ファイルで Apps を有効化または無効化するには、次の設定の詳細をご覧ください。

"apps": {
  "enabled": "true" //Set to "false" to disable the Apps
  "sql_connection_str": "" ////Optional and only required to override the default database name
}
"apps": {
  "enabled": "true" //Set to "false" to disable the Apps
  "sql_connection_str": "" ////Optional and only required to override the default database name
}

AI Center を有効化または無効化する

AI Center では、enable フラグと SQL データベースを更新する必要があります。

以前に cluster_config.jsonsql_connection_string_template_jdbc の値を設定していた場合、既定の AI Center データベース名は AutomationSuite_AICenter です。

既定のデータベース名を変更するには、AI Center フィールド内の sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template_jdbc に設定されている接続文字列テンプレートが上書きされます。

  • AI Center に外部 Orchestrator が必要ない場合は、 cluster_config.jsonで AI Center を有効化または無効化するために、次の設定の詳細をご覧ください。

    "aicenter": {
      "enabled": "true", //Set to "false" to disable the AICenter
      "sql_connection_str": "" //Optional and only required to override the default database name
    }
    "aicenter": {
      "enabled": "true", //Set to "false" to disable the AICenter
      "sql_connection_str": "" //Optional and only required to override the default database name
    }
    
  • AI Center に外部 Orchestrator が必要な場合は、 cluster_config.jsonで AI Center を有効化または無効化するために、次の設定の詳細をご覧ください。

    "aicenter": {
        "enabled": "true", //Set to "false" to disable the AI Center
        "sql_connection_str": "" //Optional and only required to override the default database name
        "orchestrator_url": "https://orchestrator.example.com", //Specify the Orchestrator URL for AI Center
        "identity_server_url": "https://orchestrator.example.com/identity", //Specify the Identiy URL for AI Center
        "orchestrator_cert_file_path": "/opt/UiPathAutomationSuite/UiPath_Installer/orch.cer", //Specify the path to the Orchestrator certificate
        "identity_cert_file_path": "/opt/UiPathAutomationSuite/UiPath_Installer/orch.cer", //Specify the path to Identity certificate file
        "metering_api_key": "test" //Specify the metering API key
      }
    "aicenter": {
        "enabled": "true", //Set to "false" to disable the AI Center
        "sql_connection_str": "" //Optional and only required to override the default database name
        "orchestrator_url": "https://orchestrator.example.com", //Specify the Orchestrator URL for AI Center
        "identity_server_url": "https://orchestrator.example.com/identity", //Specify the Identiy URL for AI Center
        "orchestrator_cert_file_path": "/opt/UiPathAutomationSuite/UiPath_Installer/orch.cer", //Specify the path to the Orchestrator certificate
        "identity_cert_file_path": "/opt/UiPathAutomationSuite/UiPath_Installer/orch.cer", //Specify the path to Identity certificate file
        "metering_api_key": "test" //Specify the metering API key
      }
    
    注:

    metering_api_key は、AI Center のクラウド アカウントで確認できる Document Understanding または AI ユニットの API キーです。

インストールを完了するには、次のインストール後コマンドを実行します。

./bin/uipathctl service aicenter --installation-token <identity token>
./bin/uipathctl service aicenter --installation-token <identity token>

Automation Hub を有効化または無効化する

Automation Hub を有効化するには、cluster_config.json ファイルの automation_hub セクションで enabled フラグを true に設定します。

"automation_hub": {
  "enabled": "true" //Set to "false" to disable Automation Hub
  "sql_connection_str": "" //Optional and only required to override the default database name
}
"automation_hub": {
  "enabled": "true" //Set to "false" to disable Automation Hub
  "sql_connection_str": "" //Optional and only required to override the default database name
}

Automation Hub を無効化するには、cluster_config.json ファイルの automation_hub セクションで enabled フラグを false に設定します。

Automation Ops を有効化または無効化する

Automation Ops では、enable フラグと SQL データベースを更新する必要があります。

以前に cluster_config.jsonsql_connection_string_template の値を設定していた場合、Automation Ops の既定のデータベース名は AutomationSuite_Platform です。

既定のデータベース名を変更するには、Automation Ops フィールド内の sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートが上書きされます。

注:

Automation Ops は、Orchestrator を含むコア プラットフォームとデータベースを共有します。ここでデータベースを変更する場合は、コア プラットフォームのデータベースも更新します。

cluster_config.json で Automation Ops を有効化または無効化するには、次の設定の詳細をご覧ください。

"automation_ops": {
  "enabled": "true", //Set to "false" to disable the Automation Ops
  "sql_connection_str": "" //Optional and only required to override the default database name
}
"automation_ops": {
  "enabled": "true", //Set to "false" to disable the Automation Ops
  "sql_connection_str": "" //Optional and only required to override the default database name
}

Automation Suite ロボットを有効化または無効化する

注:

Automation Suite ロボットを有効化する前に、要件を満たしていることを確認してください。

Automation Suite ロボットを有効化するには、次の手順に従います。

  1. cluster_config.json ファイルの asrobots フラグを有効化します。パッケージのキャッシュを有効化する場合は、packagecaching フラグと packagecachefolder フラグも適切に設定してください。

    {
      "asrobots": {
         "enabled": Boolean,
         "packagecaching": Boolean,
         "packagecachefolder": String
      }
    }
    {
      "asrobots": {
         "enabled": Boolean,
         "packagecaching": Boolean,
         "packagecachefolder": String
      }
    }
    
    パラメーター既定値説明
    packagecachingtruetrue に設定すると、ロボットはローカル キャッシュを使用してパッケージを解決します。
    packagecachefolder/uipath_asrobots_package_cacheパッケージが保存されているサーバーレス エージェント ノード上のディスクの場所です。
    注:

    パッケージのキャッシュを使用すると、プロセスの実行を最適化し、実行速度を向上できます。NuGet パッケージは、インターネット/ネットワークからダウンロードするのではなく、ファイルシステムから取得します。そのためには 10 GB 以上の領域が追加で必要で、その領域を専用ノードのホスト マシンのファイルシステム上のフォルダーに割り当てる必要があります。

  2. マルチノードの高可用性に対応した運用環境のセットアップを使用する場合は、Automation Suite ロボット専用のエージェント ノードを構成する必要があります。シングルノードの評価モードでは、追加のノードは省略可能です。手順については、「 Automation Suite ロボット専用のエージェント ノードを追加する」をご覧ください。

Automation Suite ロボットを無効化するには、cluster_config.json ファイルで asrobots フラグを無効化します。

Data Service を有効化または無効化する

Data Service では、enable フラグと SQL データベースを更新する必要があります。

以前に cluster_config.jsonsql_connection_string_template の値を設定していた場合、既定のデータベース名は AutomationSuite_DataService です。

既定のデータベース名を変更するには、Data Service フィールド内の sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートが上書きされます。

cluster_config.json で Data Service を有効化または無効化するには、次の設定の詳細をご覧ください。

"dataservice": {
  "enabled": "true", //Set to "false" to disable the Data Service,
  "sql_connection_str": "" //Optional and only required to override the default database name
}
"dataservice": {
  "enabled": "true", //Set to "false" to disable the Data Service,
  "sql_connection_str": "" //Optional and only required to override the default database name
}

Document Understanding を有効化または無効化する

Document Understanding では、enable フラグと SQL データベースを更新する必要があります。

以前に cluster_config.jsonsql_connection_string_template_odbc の値を設定していた場合、既定のデータベース名は AutomationSuite_DU_Datamanager です。

既定のデータベース名を変更するには、Document Understanding フィールド内の sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template_odbc に設定されている接続文字列テンプレートが上書きされます。

オフライン インストールを実行する場合、Document Understanding のオフライン バンドルをダウンロードする必要があります。Document Understanding を有効化する前に、Document Understanding の「インストールして使用する」をご覧ください。

設定例

AI Center に基づくプロジェクトのみを有効化する場合は、 cluster_config.json ファイルで次の設定の詳細を指定します。

"documentunderstanding": {
  "enabled": "true", //Set to "false" to disable the Document Understanding
  "sql_connection_str": "" //Optional and only required to override the default database name
}
  "pyodbc_sql_connection_str": "" //Optional and only required to override the default database name
    }
"documentunderstanding": {
  "enabled": "true", //Set to "false" to disable the Document Understanding
  "sql_connection_str": "" //Optional and only required to override the default database name
}
  "pyodbc_sql_connection_str": "" //Optional and only required to override the default database name
    }

AI Center に基づくプロジェクトと Document Understanding モダン プロジェクトの両方を有効化する場合は、 cluster_config.json ファイルで次の構成の詳細を指定します。

"documentunderstanding": {
  "enabled": "true", //Set to "false" to disable the Document Understanding
  "sql_connection_str": "" //Optional and only required to override the default database name
}
  "pyodbc_sql_connection_str": "" //Optional and only required to override the default database name
  "modernProjects": {
      "enabled": "true" //Set to "false" to disable Document Understanding modern projects
      "enable_cpu_inference": "false"  //Set to "true" to use CPU instead of GPU for AIHM and SSDE services during DU installation. 
    }
"documentunderstanding": {
  "enabled": "true", //Set to "false" to disable the Document Understanding
  "sql_connection_str": "" //Optional and only required to override the default database name
}
  "pyodbc_sql_connection_str": "" //Optional and only required to override the default database name
  "modernProjects": {
      "enabled": "true" //Set to "false" to disable Document Understanding modern projects
      "enable_cpu_inference": "false"  //Set to "true" to use CPU instead of GPU for AIHM and SSDE services during DU installation. 
    }

Insights を有効化または無効化する

Insights では、enable フラグと SQL データベースを更新する必要があります。

以前に cluster_config.jsonsql_connection_string_template の値を設定していた場合、既定のデータベース名は AutomationSuite_Insights です。

既定のデータベース名を変更するには、Insights フィールド内の sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートが上書きされます。

Insights のリアルタイム監視機能を有効化するには、enable_realtime_monitoring フラグを true に設定します。

Insights には、メール通知の受信を有効化する、任意の SMTP 設定があります。詳細については、「 高度なインストール」をご覧ください。

cluster_config.json で Insights を有効化または無効化するには、次の設定の詳細をご覧ください。

"insights": {
  "enabled": "true", //Set to "false" to disable the Insights,
  "enable_realtime_monitoring": "false", //Set to "true" to enable Insights Real-time monitoring,
  "sql_connection_str": "" //Optional and only required to override the default database name
}
"insights": {
  "enabled": "true", //Set to "false" to disable the Insights,
  "enable_realtime_monitoring": "false", //Set to "true" to enable Insights Real-time monitoring,
  "sql_connection_str": "" //Optional and only required to override the default database name
}

Integration Service を有効化または無効化する

Integration Service を有効化するには、cluster_config.json ファイルの integrationservices セクションで enabled フラグを trueに設定します。

"integrationservices": {
  "enabled": "true" //Set to "false" to disable Integration Service
  "sql_connection_str": "" //Optional and only required to override the default database name
}
"integrationservices": {
  "enabled": "true" //Set to "false" to disable Integration Service
  "sql_connection_str": "" //Optional and only required to override the default database name
}

MCP サーバーの有効化または無効化

MCP サーバーを有効にするには、cluster_config.json ファイルで agenthub フラグを true に設定します。

"agenthub": {
    "enabled": "true" //Set to "false" to disable MCP Servers
}
"agenthub": {
    "enabled": "true" //Set to "false" to disable MCP Servers
}

MCP サーバーを無効にするには、cluster_config.json ファイルで agenthub フラグを false に設定します。

Orchestrator を有効化または無効化する

Orchestrator を有効化するには、cluster_config.json ファイルで orchestrator フラグを true に設定します。

"orchestrator": {
  "enabled": "true" //Set to "false" to disable Orchestrator
  "sql_connection_str": "" //Optional and only required to override the default database name
}
"orchestrator": {
  "enabled": "true" //Set to "false" to disable Orchestrator
  "sql_connection_str": "" //Optional and only required to override the default database name
}

Orchestrator を無効化するには、cluster_config.json ファイルで orchestrator フラグを false に設定します。

Process Mining を有効化または無効化する

重要:

Process Mining が有効化されている場合、 AutomationSuite_Airflow データベースには PostgreSQL が必要です。詳しくは、「 Process Mining のための SQL の要件」をご覧ください。

Process Mining を有効化するには、cluster_config.json ファイルに以下の変更を加えます。

  1. processmining フラグを有効化します。

  2. 次の接続文字列テンプレートを構成します。

    • sql_connection_string_template
    • sql_connection_string_template_jdbc
    • sql_connection_string_template_odbc
    • sql_connection_string_template_sqlalchemy_pyodbc
  3. マルチノードの高可用性に対応した運用環境のインストールでは、2 つ目の SQL Server 用に個別の接続文字列を追加します。シングルノードの評価版のインストールでは、秒単位の SQL Server が推奨されます。秒単位の SQL Server の構成方法については、「Process Mining のための SQL の要件」をご覧ください

    "processmining": {
      "enabled": true,
      "sql_connection_str": "", // dotnet connection string
      "sqlalchemy_pyodbc_sql_connection_str": "", 
      "warehouse": {
            "sql_connection_str": "",
            "sqlalchemy_pyodbc_sql_connection_str": ""
         }
    }
    "processmining": {
      "enabled": true,
      "sql_connection_str": "", // dotnet connection string
      "sqlalchemy_pyodbc_sql_connection_str": "", 
      "warehouse": {
            "sql_connection_str": "",
            "sqlalchemy_pyodbc_sql_connection_str": ""
         }
    }
    

Process Mining を無効化するには、processmining フラグを無効化します。

Test Manager を有効化または無効化する

Test Manager では、enable フラグと SQL データベースを更新する必要があります。

以前に cluster_config.jsonsql_connection_string_template の値を設定していた場合、既定のデータベース名は AutomationSuite_Test_Manager です。

既定のデータベース名を変更するには、Test Manager フィールド内の sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートが上書きされます。

cluster_config.json で Test Manager を有効化または無効化するには、次の設定の詳細をご覧ください。

"test_manager": {
  "enabled": "true", //Set to "false" to disable the Test Manager,
  "sql_connection_str": "" //Optional and only required to override the default database name
}
"test_manager": {
  "enabled": "true", //Set to "false" to disable the Test Manager,
  "sql_connection_str": "" //Optional and only required to override the default database name
}

手順 2: インストーラーを実行して新しい製品構成を更新する

cluster_config.jsonを更新したら、次の手順を実行します。

  1. 次のコマンドを実行して、共有コンポーネントのインストールに必要な前提条件を作成します。

    ./bin/uipathctl prereq create /opt/UiPathAutomationSuite/cluster_config.json --versions versions/helm-charts.json
    ./bin/uipathctl prereq create /opt/UiPathAutomationSuite/cluster_config.json --versions versions/helm-charts.json
    
  2. 次のコマンドを実行して、共有コンポーネントのインストールに必要な前提条件を検証します。

    ./bin/uipathctl prereq run /opt/UiPathAutomationSuite/cluster_config.json --versions versions/helm-charts.json
    ./bin/uipathctl prereq run /opt/UiPathAutomationSuite/cluster_config.json --versions versions/helm-charts.json
    
  3. インストーラーで次のコマンドを実行し、サービス構成を更新します。

    ./bin/uipathctl manifest apply cluster_config.json --versions versions/helm-charts.json
    ./bin/uipathctl manifest apply cluster_config.json --versions versions/helm-charts.json
    

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

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得