- 概要
- 要件
- インストール前
- インストール
- インストール後
- 移行とアップグレード
- 監視とアラート機能
- クラスターの管理
- 製品固有の設定
- トラブルシューティング

OpenShift の Automation Suite のインストール ガイド
Automation Suite の製品は、インストール後、いつでも有効化および無効化できます。
input.json ファイルにアクセスして更新し、uipathctl. を使用して新しい構成を適用する必要があります。Action Center を有効化または無効化する
input.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 を有効化または無効化する
enable フラグと SQL データベースを更新する必要があります。
input.jsonで sql_connection_string_template_odbc の値を設定していた場合、既定のデータベース名は AutomationSuite_Appsになります。
sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template_odbc に設定されている接続文字列テンプレートが上書きされます。
input.json ファイルで Apps を有効化または無効化するには、次の設定の詳細をご覧ください。
"apps": {
"enabled": "true" //Set to "false" to disable the Apps
"sql_connection_str": "" ////Optional and only require to override the default database name
}"apps": {
"enabled": "true" //Set to "false" to disable the Apps
"sql_connection_str": "" ////Optional and only require to override the default database name
}AI Center を有効化または無効化する
enable フラグと SQL データベースを更新する必要があります。
input.jsonで sql_connection_string_template_jdbc の値を設定していた場合、AI Center の既定のデータベース名は AutomationSuite_AICenterになります。
sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template_jdbc に設定されている接続文字列テンプレートが上書きされます。
input.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 Trust Layer を有効化または無効化する
input.json ファイルの [llmgateway] セクションと [llmobservability] セクションで、enabled フラグを [true] に設定します。
"llmgateway": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "" //Optional and only require to override the default database name
},
"llmobservability": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "" //Optional and only require to override the default database name"llmgateway": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "" //Optional and only require to override the default database name
},
"llmobservability": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "" //Optional and only require to override the default database nameAutomation Hub を有効化または無効化する
input.json ファイルの automation_hub セクションで、enabled フラグを に設定しますtrue:
"automation_hub": {
"enabled": "true" //Set to "false" to disable Automation Hub
"sql_connection_str": "" //Optional and only require to override the default database name
}"automation_hub": {
"enabled": "true" //Set to "false" to disable Automation Hub
"sql_connection_str": "" //Optional and only require to override the default database name
}input.json ファイルの automation_hub セクションで enabled フラグを false に設定します。
Automation Ops を有効化または無効化する
enable フラグと SQL データベースを更新する必要があります。
input.jsonで sql_connection_string_template の値を設定していた場合、Automation Ops の既定のデータベース名は AutomationSuite_Platformになります。
sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートが上書きされます。
input.jsonで Automation Ops を有効化または無効化するには、次の設定の詳細をご覧ください。
"automation_ops": {
"enabled": "true", //Set to "false" to disable the Automation Ops
"sql_connection_str": "" //Optional and only require to override the default database name
}"automation_ops": {
"enabled": "true", //Set to "false" to disable the Automation Ops
"sql_connection_str": "" //Optional and only require to override the default database name
}Automation Suite ロボットを有効化または無効化する
Automation Suite ロボットを有効化する前に、要件を満たしていることを確認してください。
Automation Suite ロボットを有効化するには、次の手順に従います。
-
input.jsonファイルのasrobotsフラグを有効化します。パッケージのキャッシュを有効化する場合は、packagecachingフラグとpackagecachefolderフラグも適切に設定してください。{ "asrobots": { "enabled": Boolean, "packagecaching": Boolean, "packagecachefolder": String } }{ "asrobots": { "enabled": Boolean, "packagecaching": Boolean, "packagecachefolder": String } }パラメーター
既定値
説明
パッケージのキャッシュTruetrueに設定すると、ロボットはローカル キャッシュを使用してパッケージを解決します。packagecachefolder/uipath_asrobots_package_cacheパッケージが保存されているサーバーレス エージェント ノード上のディスクの場所です。
注: パッケージのキャッシュを使用すると、プロセスの実行を最適化し、実行速度を向上できます。NuGet パッケージは、インターネット/ネットワークからダウンロードするのではなく、ファイルシステムから取得します。そのためには 10 GB 以上の領域が追加で必要で、その領域を専用ノードのホスト マシンのファイルシステム上のフォルダーに割り当てる必要があります。 -
マルチノードの高可用性対応の運用設定を使用する場合は、Automation Suite ロボット用に特殊なエージェント ノードを設定する必要があります。
input.json ファイルで asrobots フラグを無効化します。
コンテキスト グラウンディングを有効化または無効化する
input.json ファイルの ecs セクションで enabled フラグを trueに設定します。
"ecs": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "", //Optional and only require to override the default database name
"sql_vector_connection_str": "", //Optional and only require to override the default database name
}"ecs": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "", //Optional and only require to override the default database name
"sql_vector_connection_str": "", //Optional and only require to override the default database name
}Data Service を有効化または無効化する
enable フラグと SQL データベースを更新する必要があります。
input.jsonで sql_connection_string_template の値を設定していた場合、既定のデータベース名は AutomationSuite_DataServiceになります。
sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートが上書きされます。
input.jsonで Data Service を有効化または無効化するには、次の設定の詳細をご覧ください。
"dataservice": {
"enabled": "true", //Set to "false" to disable the Data Service,
"sql_connection_str": "" //Optional and only require to override the default database name
}"dataservice": {
"enabled": "true", //Set to "false" to disable the Data Service,
"sql_connection_str": "" //Optional and only require to override the default database name
}Document Understanding を有効化または無効化する
enable フラグと SQL データベースを更新する必要があります。
input.jsonで sql_connection_string_template_odbc の値を設定していた場合、既定のデータベース名は AutomationSuite_DU_Datamanagerになります。
sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template_odbc に設定されている接続文字列テンプレートが上書きされます。
input.jsonで Document Understanding を有効化または無効化するには、次の設定の詳細をご覧ください。"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
}
Insights を有効化または無効化する
enable フラグと SQL データベースを更新する必要があります。
input.jsonで sql_connection_string_template の値を設定していた場合、既定のデータベース名は AutomationSuite_Insightsになります。
sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートが上書きされます。
enable_realtime_monitoring フラグを true に設定します。
Insights には、メール通知の受信を有効化する、任意の SMTP 設定があります。詳しくは、「input.json を構成する」をご覧ください。
input.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 require 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 require to override the default database name
}Integration Service を有効化または無効化する
input.json ファイルの integrationservices セクションで、enabled フラグを に設定しますtrue。
"integrationservices": {
"enabled": "true" //Set to "false" to disable Integration Service
"sql_connection_str": "" //Optional and only require to override the default database name
}"integrationservices": {
"enabled": "true" //Set to "false" to disable Integration Service
"sql_connection_str": "" //Optional and only require to override the default database name
}Orchestrator を有効化または無効化する
input.json ファイルで orchestrator フラグを true に設定します。
"orchestrator": {
"enabled": "true" //Set to "false" to disable Orchestrator
"sql_connection_str": "" //Optional and only require to override the default database name
}"orchestrator": {
"enabled": "true" //Set to "false" to disable Orchestrator
"sql_connection_str": "" //Optional and only require to override the default database name
}input.json ファイルで orchestrator フラグを false に設定します。
Process Mining を有効化または無効化する
AutomationSuite_Airflow データベースには PostgreSQL が必要です。
詳しくは、「 Process Mining のための SQL の要件 」をご覧ください。
input.json ファイルに以下の変更を加えます。
processminingフラグを有効化します。-
次の接続文字列テンプレートを構成します。
sql_connection_string_templatesql_connection_string_template_jdbcsql_connection_string_template_odbcsql_connection_string_template_sqlalchemy_pyodbc
-
2 つ目の SQL Server 用に個別の接続文字列を追加します。
"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": "" } }
processmining フラグを無効化します。
Studio Web を有効化または無効化する
input.json ファイルの studioweb セクションで、enabled フラグを trueに設定します。
プロジェクト・サービスおよびパッケージ・サービスのストレージ・クォータは、他の値が定義されていない場合、デフォルト値を使用します。 既定値より大きい値のみを定義してください。
"studioweb": {
"enabled": "true" //Set to "false" to disable Studio Web
"sql_connection_str": "" //Optional and only require to override the default database name
"project_service_storage_quota": "500Gi" (optional)
"package_service_storage_quota": "300Gi" (optional)
}"studioweb": {
"enabled": "true" //Set to "false" to disable Studio Web
"sql_connection_str": "" //Optional and only require to override the default database name
"project_service_storage_quota": "500Gi" (optional)
"package_service_storage_quota": "300Gi" (optional)
}Test Manager を有効化または無効化する
enable フラグと SQL データベースを更新する必要があります。
input.jsonで sql_connection_string_template の値を設定していた場合、既定のデータベース名は AutomationSuite_Test_Managerになります。
sql_connection_str を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートが上書きされます。
input.jsonで Test Manager を有効化または無効化するには、次の設定の詳細をご覧ください。
"test_manager": {
"enabled": "true", //Set to "false" to disable the Test Manager,
"sql_connection_str": "" //Optional and only require to override the default database name
}"test_manager": {
"enabled": "true", //Set to "false" to disable the Test Manager,
"sql_connection_str": "" //Optional and only require to override the default database name
}Autopilot for Everyone を有効化または無効化する
input.json ファイルの autopiloteveryone セクションで enabled フラグを trueに設定します。
"autopiloteveryone": {
"enabled": true //Set to "false" to disable
}"autopiloteveryone": {
"enabled": true //Set to "false" to disable
}LLM ゲートウェイを有効化または無効化する
input.json ファイルの llmgateway セクションで enabled フラグを次のように設定しますtrue
"llmgateway": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "" //Optional and only require to override the default database name - dotnet connection string
}"llmgateway": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "" //Optional and only require to override the default database name - dotnet connection string
}LLM の監視を有効化または無効化する
input.json ファイルの llmobservability セクションで enabled フラグを次のように設定しますtrue
"llmobservability": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "" //Optional and only require to override the default database name - dotnet connection string
}"llmobservability": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "" //Optional and only require to override the default database name - dotnet connection string
}ソリューションを有効化または無効化する
input.json ファイルの automationsolutions セクションで enabled フラグを次のように設定しますtrue
"automationsolutions": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "", //Optional and only require to override the default database name - dotnet connection string
}"automationsolutions": {
"enabled": true, //Set to "false" to disable
"sql_connection_str": "", //Optional and only require to override the default database name - dotnet connection string
}input.json を更新したら、uipathctl インストーラーで以下のコマンドを実行し、サービス構成を更新します。
- 次のコマンドを実行して、クラスターに加えられる変更の出力を取得します。
# uipathctl manifest apply --dry-run input.json --versions versions.json# uipathctl manifest apply --dry-run input.json --versions versions.json - インストーラーで構成を生成できるようにするには、次のコマンドを実行します。詳しくは、「 設定を自動的に生成する」をご覧ください。
uipathctl prereq create input.json --versions versions.jsonuipathctl prereq create input.json --versions versions.json input.jsonに設定した入力に基づいて前提条件を確認するには、次のコマンドを実行します。詳細については、「 前提条件を確認する」をご覧ください。uipathctl prereq run input.json --versions versions.jsonuipathctl prereq run input.json --versions versions.json- クラスターに変更を適用するために、次のコマンドを実行します。
# uipathctl manifest apply input.json --versions versions.json --log-level info --skip-helm# uipathctl manifest apply input.json --versions versions.json --log-level info --skip-helm
- 手順 1: 構成ファイル内の製品選択を変更する
- Action Center を有効化または無効化する
- Apps を有効化または無効化する
- AI Center を有効化または無効化する
- AI Trust Layer を有効化または無効化する
- Automation Hub を有効化または無効化する
- Automation Ops を有効化または無効化する
- Automation Suite ロボットを有効化または無効化する
- コンテキスト グラウンディングを有効化または無効化する
- Data Service を有効化または無効化する
- Document Understanding を有効化または無効化する
- Insights を有効化または無効化する
- Integration Service を有効化または無効化する
- Orchestrator を有効化または無効化する
- Process Mining を有効化または無効化する
- Studio Web を有効化または無効化する
- Test Manager を有効化または無効化する
- Autopilot for Everyone を有効化または無効化する
- LLM ゲートウェイを有効化または無効化する
- LLM の監視を有効化または無効化する
- ソリューションを有効化または無効化する
- 手順 2: インストーラーを実行して新しい製品構成を更新する