- 概述
- 要求
- 安装
- 安装后
- 集群管理
- 监控和警示
- 迁移和升级
- 特定于产品的配置
- 最佳实践和维护
- 故障排除
- 如何在安装过程中对服务进行故障排除
- 如何卸载集群
- 如何清理离线工件以改善磁盘空间
- 如何清除 Redis 数据
- 如何启用 Istio 日志记录
- 如何手动清理日志
- 如何清理存储在 sf-logs 存储桶中的旧日志
- 如何禁用 AI Center 的流日志
- 如何对失败的 Automation Suite 安装进行调试
- 如何在升级后从旧安装程序中删除映像
- 如何自动清理 Longhorn 快照
- 如何禁用 TX 校验和卸载
- 如何手动将 ArgoCD 日志级别设置为 Info
- 如何为外部注册表生成已编码的 pull_secret_value
- 如何解决 TLS 1.2 中的弱密码问题
- 如何使用证书
- 如何使用集群内对象存储 (Ceph) 收集 DU 使用情况数据
- 如何在离线环境中安装 RKE2 SELinux
- 如何清理 NFS 服务器上的旧差异备份
- 无法获取沙盒映像
- Pod 未显示在 ArgoCD 用户界面中
- Redis 探测器失败
- RKE2 服务器无法启动
- 在 UiPath 命名空间中找不到密码
- ArgoCD 在首次安装后进入“进行中”状态
- 访问 ArgoCD 只读帐户时出现问题
- MongoDB Pod 处于 CrashLoopBackOff 状态或在删除后处于“等待 PVC 配置”状态
- 集群还原或回滚后服务运行状况不佳
- Pod 在 Init:0/X 中卡住
- Prometheus 处于 CrashLoopBackoff 状态,并出现内存不足 (OOM) 错误
- 监控仪表板中缺少 Ceph-rook 指标
- Pod 无法在代理环境中与 FQDN 通信
- 无法配置升级后的电子邮件警示
- 无正常的上游问题
- 使用 Automation Suite 诊断工具
- 使用 Automation Suite 支持捆绑包
- 探索日志

Linux 版 Automation Suite 安装指南
您可以在安装后的任何时候启用和禁用 Automation Suite 中的产品。
/opt/UiPathAutomationSuite 文件夹中的 cluster_config.json 文件,然后重新运行服务安装程序步骤。
启用或禁用 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
enable 标志和 SQL 数据库。
cluster_config.json中为sql_connection_string_template_odbc设置了值,则默认数据库名称为AutomationSuite_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 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 数据库。
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 Units API 密钥。
要完成安装,请运行以下安装后命令:
./configureUiPathAS.sh aicenter configure --installation-token <identity token>./configureUiPathAS.sh aicenter configure --installation-token <identity token>启用或禁用 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 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 。
启用或禁用 Automation Ops
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 机器人
要启用 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 包从文件系统获取,而不是从 Internet/网络下载。这需要至少 10GB 的额外空间,并且应分配给专用节点的主机文件系统上的文件夹。 -
如果您使用多节点 HA 就绪生产设置,则必须为 Automation Suite Robot 配置专用代理节点。在单节点评估模式下,附加节点为可选项。有关说明,请参阅为 Automation Suite Robot 添加专用代理节点。
cluster_config.json文件中的asrobots标志。
启用或禁用 Data Service
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
}启用或禁用 Document Understanding
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,
"sql_connection_str": "***" // dotnet connection string,
"datamanager": {
"sql_connection_str": "***" // odbc connection string
"pyodbc_sql_connection_str": "***" // python sql connection string
}
}"documentunderstanding": {
"enabled": true,
"sql_connection_str": "***" // dotnet connection string,
"datamanager": {
"sql_connection_str": "***" // odbc connection string
"pyodbc_sql_connection_str": "***" // python sql connection string
}
}启用或禁用 Insights
enable 标志和 SQL 数据库。
cluster_config.json中为sql_connection_string_template设置了值,则默认数据库名称为AutomationSuite_Insights 。
sql_connection_str。这将覆盖 sql_connection_string_template 中设置的默认数据库和连接字符串模板。
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 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
}启用或禁用 Orchestrator
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 。
启用或禁用 Process Mining
cluster_config.json文件进行以下更改:
- 启用
processmining标志。 -
配置以下连接字符串模板:
sql_connection_string_templatesql_connection_string_template_jdbcsql_connection_string_template_odbcsql_connection_string_template_sqlalchemy_pyodbc
-
在多节点 HA 就绪生产安装中,为第二个 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": "" } }
processmining 标志。
启用或禁用 Task Mining
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
}取消工作负载污染
如果需要,可以将 Task Mining 节点重新用作代理节点。为此,请运行以下命令:
- 使用
kubectl describe node task-mining_nodename命令检查实际的污点。 - 运行命令
kubectl taint nodes task-mining_nodename task.mining/cpu=present:NoSchedule-。 - 使用
kubectl describe node task-mining_nodename命令检查污点已消失。
启用或禁用 Test Manager
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