robot
2024.10
false
- 基本情報
- UiPath Robot について
- インストール要件
- 無人オートメーション用のロボットをインストールする
- 無人オートメーション用のロボットを設定する
- 有人オートメーション用のロボットをインストールする
- 有人オートメーション用のロボットを設定する
- Integrations
- ガバナンス
- トラブルシューティング
Robot 管理ガイド
最終更新日時 2026年4月23日
Linux 環境に Robot を設定するには、Orchestrator に既存の無人オートメーションの設定が必要です。
以下の手順では、Linux 上に Docker イメージをダウンロードし、Robot を Orchestrator に接続します。
- コマンド ライン ターミナルで Docker イメージをダウンロードします。
docker pull uipathprod.azurecr.io/robot/uiautomation-runtime:latest24.10docker pull uipathprod.azurecr.io/robot/uiautomation-runtime:latest24.10 - イメージが Docker 環境に表示されたら、ライセンス契約に同意し、Robot を Orchestrator に接続します。
- マシン テンプレートのクライアント ID とクライアント シークレットを使用する場合:
docker run -e LICENSE_AGREEMENT=accept -e ORCHESTRATOR_URL="https://cloud.uipath.com/organization/tentant/orchestrator_"-e CLIENT_ID="$Client_ID" -e CLIENT_SECRET="$Client_secret" -tid uipathprod.azurecr.io/robot/uiautomation-runtime:latest24.10docker run -e LICENSE_AGREEMENT=accept -e ORCHESTRATOR_URL="https://cloud.uipath.com/organization/tentant/orchestrator_"-e CLIENT_ID="$Client_ID" -e CLIENT_SECRET="$Client_secret" -tid uipathprod.azurecr.io/robot/uiautomation-runtime:latest24.10 - マシン キーを使用する場合
docker run -e LICENSE_AGREEMENT=accept -e ORCHESTRATOR_URL="https://cloud.uipath.com/organization/tentant/orchestrator_" -e MACHINE_KEY="$KEY" -tid uipathprod.azurecr.io/robot/uiautomation-runtime:latest24.10docker run -e LICENSE_AGREEMENT=accept -e ORCHESTRATOR_URL="https://cloud.uipath.com/organization/tentant/orchestrator_" -e MACHINE_KEY="$KEY" -tid uipathprod.azurecr.io/robot/uiautomation-runtime:latest24.10
- マシン テンプレートのクライアント ID とクライアント シークレットを使用する場合:
- マシン上の Robot のステータスを確認するには、次のコマンドを実行します。
docker ps -adocker ps -a - Robot を切断するには、次のコマンドを実行します。
docker stop {container_id}docker stop {container_id} - Robot を停止して Orchestrator に接続したままにするには、次のコマンドを実行します。
docker kill {container_id}docker kill {container_id} - コンテナーからログを取得するには、次のコマンドを実行します。
docker cp <ContainerId>:/home/robotuser/.local/share/UiPath/Logs <TargetPath>docker cp <ContainerId>:/home/robotuser/.local/share/UiPath/Logs <TargetPath>