robot
latest
false
- 入门指南
- 了解 UiPath Robot
- 安装要求
- 为 Unattended 自动化任务安装机器人
- 为 Unattended 自动化配置机器人
- 为 Attended 自动化安装机器人
- 为 Attended 自动化配置机器人
- 集成
- 监管
- 故障排除
重要 :
新发布内容的本地化可能需要 1-2 周的时间才能完成。

机器人管理员指南
上次更新日期 2026年2月23日
设置 Linux 机器人
要在 Linux 环境中设置机器人,您需要在 Orchestrator 中已有 Unattended 设置。
以下过程可用于在 Linux 上下载 Docker 映像,并将机器人连接到 Orchestrator:
- 在命令行终端中,下载 Docker 镜像:
docker pull uipathprod.azurecr.io/robot/uiautomation-runtime:latest24.10docker pull uipathprod.azurecr.io/robot/uiautomation-runtime:latest24.10 - 当映像显示在 Docker 环境中时,请接受许可协议,并将机器人连接到 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 和客户端密码:
- 要查看计算机上机器人的状态,请运行:
docker ps -adocker ps -a - 如要断开与机器人的连接,请运行:
docker stop {container_id}docker stop {container_id} - 要停止机器人,但保持与 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>