automation-suite
2023.4
false
- 概述
- 要求
- 安装
- 先决条件检查
- 下载安装包
- uipathctl cluster
- uipathctl 集群维护
- uipathctl cluster maintenance disable
- uipathctl cluster maintenance enable
- uipathctl cluster maintenance is-enabled
- uipathctl 集群升级
- uipathctl 配置
- uipathctl 配置警示
- uipathctl configalerts add-email
- uipathctl config alerts remove-email
- uipathctl config alerts update-email
- uipathctl config additional-ca-certificates get
- uipathctl config tls-certificates get
- uipathctl config Orchestrator
- uipathctl config Orchestrator get-config
- uipathctl config orchestrator update-config
- uipathctl config additional-ca-certificates update
- uipathctl config tls-certificates update
- uipathctl 运行状况
- uipathctl 运行状况捆绑包
- uipathctl 运行状况检查
- uipathctl health diagnose
- uipathctl health test
- uipathctl identity
- uipathctl identity add-host-admin
- uipathctl identity Enable-basic-auth
- uipathctl identity get-saml-certificate
- uipathctl identity get-token-signing-certificate
- uipathctl identity rotate-saml-certificates
- uipathctl identity rotate-token-signing-certificates
- uipathctl identity update-saml-certificate
- uipathctl identity update-token-signing-certificate
- uipathctl 清单
- uipathctl manifest apply
- uipathctl manifest diff
- uipathctl manifest get
- uipathctl manifest list-applications
- uipathctl manifest render
- uipathctl 先决条件
- uipathctl prereq create
- uipathctl prereq run
- uipathctl 资源
- uipathctl 资源报告
- uipathctl 快照
- uipathctl 快照备份
- uipathctl snapshot backup create
- uipathctl snapshot backup disable
- uipathctl snapshot backup enable
- uipathctl snapshot delete
- uipathctl snapshot list
- uipathctl snapshot restore
- uipathctl snapshot restore create
- uipathctl snapshot restore delete
- uipathctl snapshot restore history
- uipathctl snapshot restore logs
- uipathctl sso
- uipathctl sso generate-connector
- uipathctl sso generate-overlays
- uipathctl sso generate-rbac
- uipathctl 版本
- 安装后
- 迁移和升级
- 监控和警示
- 集群管理
- 特定于产品的配置
- 故障排除
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
EKS/AKS 上的 Automation Suite 安装指南
Last updated 2024年11月1日
缓存
Automation Suite 上的 UiPath™ 产品需要缓存功能。您必须配置 Cloud Redis (Azure/AKS) 或 Elasticach (AWS/EKS)。有关先决条件和兼容版本的列表,请参阅兼容性矩阵。
警告:
EKS/AKS 上的 Automation Suite 当前不支持 AWS 和 Azure 提供的 Redis 数据库集群功能。因此,您必须使用 Redis 主动/被动集群选择 Redis 服务。
Automation Suite 中的多个服务(例如 Orchestrator 和 Identity)使用 Redis 作为分布式缓存,以加快关键的大批量操作。这些服务在 Redis 中存储经常访问的数据,以避免从数据库检索数据或进行多次昂贵的计算。
以下建议特定于 Azure。一般建议为生产环境选择具有至少 1GB 容量和服务级别协议 (SLA) 的 SKU。
对于 Redis 缓存要求,配置计划可能会有所不同,具体取决于您要部署的环境类型(例如测试环境或生产环境):
- 基本版:不建议用于生产部署,因为它不提供服务级别协议 (SLA)。但是,它可用于测试环境。
- 标准 C1 版 (1GB):可提供不错的容量和性能,适合大多数安装。它还允许将来扩展到更高级别,包括标准 C2 或高级。
- 标准 C2 版:比标准 C1 高出一步,与 C1 相比,它提供了更大的容量和更好的性能。
- 高级版:这是最值得推荐的选项,因为它提供了提升 SLA 的可用性区域,以及用于增强安全性的 VNet 集成。
满足缓存先决条件后,您必须在
input.json
文件中传递访问权限信息,如以下示例所示:
"fabric": {
"redis": {
"hostname": "xx",
"password": "xx",
"port": 6380,
"tls": true
}
}
"fabric": {
"redis": {
"hostname": "xx",
"password": "xx",
"port": 6380,
"tls": true
}
}
注意:仅当 Redis URL 受已知颁发机构信任或者您将证书添加到其他 CA 证书时,才将
tls
参数的值设置为true
。 否则,将tls
参数的值设置为false
。