- 概要
- 要件
- インストール
- インストール後
- クラスターの管理
- 監視とアラート機能
- 移行とアップグレード
- 製品固有の設定
- ベスト プラクティスとメンテナンス
- トラブルシューティング
- インストール時にサービスをトラブルシューティングする方法
- クラスターをアンインストールする方法
- オフライン成果物をクリーンアップしてディスク領域を改善する方法
- Redis データをクリアする方法
- Istio ログを有効化する方法
- ログを手動でクリーンアップする方法
- sf-logs バケットに保存されている古いログをクリーンアップする方法
- AI Center のストリーミング ログを無効化する方法
- 失敗した Automation Suite インストールをデバッグする方法
- アップグレード後に古いインストーラーからイメージを削除する方法
- Longhorn のスナップショットを自動的にクリーンアップする方法
- TX チェックサム オフロードを無効化する方法
- TLS 1.2 で弱い暗号に対処する方法
- RHEL 8.4 OS でオフライン インストールを実行できない
- バンドルのダウンロード中のエラー
- バイナリがないため、オフライン インストールが失敗する
- オフライン インストールでの証明書の問題
- Longhorn のセットアップ中に最初のインストールが失敗する
- SQL 接続文字列の検証エラー
- selinux iscsid モジュールの前提条件の確認が失敗する
- Azure ディスクが SSD としてマークされない
- 証明書の更新後のエラー
- ウイルス対策が原因でインストールの問題が発生する
- OS のアップグレード後に Automation Suite が動作しない
- Automation Suite で backlog_wait_time を 0 に設定する必要がある
- ワークロードの準備ができていないためボリュームをマウントできない
- プロキシ設定がある場合に Automation Hub と Apps を起動できない
- 管理ポータルのタイムアウト期間を設定する
- 基になるディレクトリ接続を更新する
- 移行後に認証が機能しない
- Kinit: Cannot find KDC for realm <AD Domain> while getting initial credentials
- kinit: Keytab contains no suitable keys for *** while getting initial credentials
- 無効なステータス コードが原因で GSSAPI 操作が失敗した
- Alarm received for failed kerberos-tgt-update job
- SSPI Provider: Server not found in Kerberos database
- アカウントが無効なため AD ユーザーのログインに失敗した
- ArgoCD へのログインに失敗した
- サンドボックス イメージを取得できない
- ポッドが ArgoCD UI に表示されない
- Redis プローブの障害
- RKE2 サーバーの起動に失敗する
- UiPath 名前空間でシークレットが見つからない
- 初回インストール後に ArgoCD が進行中ステートになる
- Unexpected inconsistency; run fsck manually
- MongoDB ポッドが CrashLoopBackOff になるか、削除後に PVC プロビジョニングの保留中になる
- MongoDB ポッドを 4.4.4-ent から 5.0.7-ent にアップグレードできない
- クラスターの復元またはロールバック後にサービスが異常になる
- Init:0/X でポッドがスタックする
- Prometheus が CrashloopBackoff ステートにあり、メモリ不足 (OOM) エラーを伴う
- Ceph-rook のメトリックが監視ダッシュボードに表示されない
- プロキシ環境でポッドが FQDN と通信できない
- Automation Suite 診断ツールを使用する
- Automation Suite サポート バンドル ツールを使用する
- ログを確認する
製品を管理する
Automation Suite の製品は、インストール後、いつでも有効化および無効化できます。
/opt/UiPathAutomationSuite
フォルダーに格納されている cluster_config.json
ファイルにアクセスして更新し、サービス インストーラー手順を再実行する必要があります。
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
}
cluster_config.json
ファイルで Apps を有効化または無効化するには、次の設定の詳細をご覧ください。
"apps": {
"enabled": "true" //Set to "false" to disable the Apps
}
"apps": {
"enabled": "true" //Set to "false" to disable the Apps
}
enable
フラグと SQL データベースを更新する必要があります。
cluster_config.json
で sql_connection_string_template_jdbc
の値を設定していた場合、AI Center の既定のデータベース名は AutomationSuite_AICenter
になります。
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 キーです。
インストールを完了するには、次のインストール後コマンドを実行します。
./configureUiPathAS.sh aicenter configure --installation-token <identity token>
./configureUiPathAS.sh aicenter configure --installation-token <identity token>
cluster_config.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
}
cluster_config.json
ファイルの automation_hub
セクションで enabled
フラグを false
に設定します。
enable
フラグと SQL データベースを更新する必要があります。
cluster_config.json
で sql_connection_string_template
の値を設定していた場合、Automation Ops の既定のデータベース名は AutomationSuite_Platform
になります。
sql_connection_str
を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template
に設定されている接続文字列テンプレートが上書きされます。
cluster_config.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 ロボットを有効化するには、次の手順に従います。
-
cluster_config.json
ファイルのasrobots
フラグを有効化します。パッケージのキャッシュを有効化する場合は、packagecaching
フラグとpackagecachefolder
フラグも適切に設定してください。{ "asrobots": { "enabled": Boolean, "packagecaching": Boolean, "packagecachefolder": String } }
{ "asrobots": { "enabled": Boolean, "packagecaching": Boolean, "packagecachefolder": String } }パラメーター
既定値
説明
パッケージのキャッシュ
True
true
に設定すると、ロボットはローカル キャッシュを使用してパッケージを解決します。packagecachefolder
/uipath_asrobots_package_cache
パッケージが保存されているサーバーレス エージェント ノード上のディスクの場所です。
注: パッケージのキャッシュを使用すると、プロセスの実行を最適化し、実行速度を向上できます。NuGet パッケージは、インターネット/ネットワークからダウンロードするのではなく、ファイルシステムから取得します。そのためには 10 GiB 以上の領域が追加で必要で、その領域を専用ノードのホスト マシンのファイルシステム上のフォルダーに割り当てる必要があります。 -
マルチノードの高可用性対応の運用設定を使用する場合は、Automation Suite ロボット用に特殊なエージェント ノードを設定する必要があります。シングルノードの評価モードでは、追加のノードは任意です。手順については、「Automation Suite ロボット専用のエージェント ノードを追加する」をご覧ください。
cluster_config.json
ファイルで asrobots
フラグを無効化します。
enable
フラグと SQL データベースを更新する必要があります。
cluster_config.json
で sql_connection_string_template
の値を設定していた場合、既定のデータベース名は AutomationSuite_DataService
になります。
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 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
}
enable
フラグと SQL データベースを更新する必要があります。
cluster_config.json
で sql_connection_string_template_odbc
の値を設定していた場合、既定のデータベース名は AutomationSuite_DU_Datamanager
になります。
sql_connection_str
を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template_odbc
に設定されている接続文字列テンプレートが上書きされます。
オフライン インストールを実行する場合、Document Understanding のオフライン バンドルをダウンロードする必要があります。Document Understanding を有効化する前に、Document Understanding の「インストールして使用する」をご覧ください。
cluster_config.json
で Document Understanding を有効化または無効化するには、次の設定の詳細をご覧ください。
"documentunderstanding": {
"enabled": "true", //Set to "false" to disable the Document Understanding
"sql_connection_str": "" //Optional and only require to override the default database name
}
"documentunderstanding": {
"enabled": "true", //Set to "false" to disable the Document Understanding
"sql_connection_str": "" //Optional and only require to override the default database name
}
enable
フラグと SQL データベースを更新する必要があります。
cluster_config.json
で sql_connection_string_template
の値を設定していた場合、既定のデータベース名は AutomationSuite_Insights
です。
sql_connection_str
を更新する必要があります。これにより、既定のデータベースと sql_connection_string_template
に設定されている接続文字列テンプレートが上書きされます。
Insights には、メール通知の受信を有効化する、任意の SMTP 設定があります。詳細については、「高度なインストール」をご覧ください。
cluster_config.json
で Insights を有効化または無効化するには、次の設定の詳細をご覧ください。
"insights": {
"enabled": "true", //Set to "false" to disable the Insights,
"sql_connection_str": "" //Optional and only require to override the default database name
}
"insights": {
"enabled": "true", //Set to "false" to disable the Insights,
"sql_connection_str": "" //Optional and only require to override the default database name
}
cluster_config.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
}
cluster_config.json
ファイルで orchestrator
フラグを false
に設定します。
cluster_config.json
ファイルに以下の変更を加えます。
processmining
フラグを有効化します。-
次の接続文字列テンプレートを構成します。
sql_connection_string_template
sql_connection_string_template_jdbc
sql_connection_string_template_odbc
sql_connection_string_template_sqlalchemy_pyodbc
-
マルチノードの高可用性対応の運用環境のインストールの場合、2 つ目の SQL Server 用に個別の接続文字列を追加します。シングルノードの評価のインストールでは、2 つ目の SQL Server の使用が推奨されます。2 つ目の 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": "" } }
processmining
フラグを無効化します。
enable
フラグと SQL データベースを更新する必要があります。
cluster_config.json
で sql_connection_string_template
の値を設定していた場合、既定のデータベース名は AutomationSuite_Task_Mining
になります。
名前を既定の名前以外に変更するには、Task Mining フィールド内の sql_connection_str を更新して、既定のデータベースと sql_connection_string_template に設定されている接続文字列テンプレートを上書きします。
Task Mining では、AI 固有のワークロード専用のエージェント ノードのプロビジョニングを含む、いくつかの追加手順が必要です。
Task Mining を有効化する前に、Task Mining のインストールの「Task Mining 専用のエージェント ノードを追加する」セクションをご覧ください。
cluster_config.json
で Task Mining を有効化または無効化するには、次の設定の詳細をご覧ください。
"task_mining": {
"enabled": "true", //Set to "false" to disable the Task Mining,
"sql_connection_str": "" //Optional and only require to override the default database name
}
"task_mining": {
"enabled": "true", //Set to "false" to disable the Task Mining,
"sql_connection_str": "" //Optional and only require to override the default database name
}
ワークロードの taint を外す
必要に応じて、Task Mining ノードをエージェント ノードとして再利用できます。このためには次のコマンドを実行します。
kubectl describe node task-mining_nodename
コマンドを使用して実際の taint を確認します。- コマンド
kubectl taint nodes task-mining_nodename task.mining/cpu=present:NoSchedule-
を実行します。 kubectl describe node task-mining_nodename
コマンドを使用して taint が削除されたことを確認します。
enable
フラグと SQL データベースを更新する必要があります。
cluster_config.json
で sql_connection_string_template
の値を設定していた場合、既定のデータベース名は AutomationSuite_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 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
}
cluster_config.json
を更新したら、インストーラーで以下のコマンドを実行し、サービス構成を更新します。
-
オンライン インストールの場合:
./install-uipath.sh -i cluster_config.json -o output.json -f -s --accept-license-agreement
./install-uipath.sh -i cluster_config.json -o output.json -f -s --accept-license-agreement -
オフライン インストールの場合:
./install-uipath.sh -i cluster_config.json -o output.json -f -s --install-type offline --accept-license-agreement
./install-uipath.sh -i cluster_config.json -o output.json -f -s --install-type offline --accept-license-agreement
- 手順 1: 構成ファイル内の製品選択を変更する
- Action Center を有効化または無効化する
- Apps を有効化または無効化する
- AI Center を有効化または無効化する
- Automation Hub を有効化または無効化する
- Automation Ops を有効化または無効化する
- Automation Suite ロボットを有効化または無効化する
- Data Service を有効化または無効化する
- Document Understanding を有効化または無効化する
- Insights を有効化または無効化する
- Orchestrator を有効化または無効化する
- Process Mining を有効化または無効化する
- Task Mining を有効化または無効化する
- Test Manager を有効化または無効化する
- 手順 2: インストーラーを実行して新しい製品構成を更新する