- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的 AWS gov 云帐户上设置 Tableau 服务器,对于初学者,我使用此处的快速入门指南在典型的 AWS CloudFormation 上创建了 Tableau 服务器 AWS Tableau Server Quickstart guide 。我开始使用 this template模板并希望我可以将 YAML 文件复制到政府云,使用相同的模板 YAML 并将服务器放在政府云上,但是在部署时出现以下错误:
Partition "aws" is not valid for resource "arn:aws:s3:::aws-quickstart/quickstart-tableau-server/*"
我的猜测是 YAML 中的某个位置(如下所示):
AWSTemplateFormatVersion: '2010-09-09'
Description: 'AWS CloudFormation Template: Single-node Tableau Server running on Windows,
CentOS, or Ubuntu. (qs-1puphiilp)'
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: AWS Environment and Machine Configuration
Parameters:
- KeyPairName
- AvailabilityZones
- PublicSubnet1CIDR
- PublicSubnet2CIDR
- VPCCIDR
- SourceCIDR
- InstanceType
- AMIOS
- Label:
default: Secrets
Parameters:
- Username
- Password
- TableauServerAdminUser
- TableauServerAdminPassword
- Label:
default: Registration
Parameters:
- AcceptEULA
- TableauServerLicenseKey
- RegFirstName
- RegLastName
- RegEmail
- RegCompany
- RegTitle
- RegDepartment
- RegIndustry
- RegPhone
- RegCity
- RegState
- RegZip
- RegCountry
- Label:
default: AWS Quick Start Configuration
Parameters:
- QSS3BucketName
- QSS3KeyPrefix
ParameterLabels:
AvailabilityZones:
default: Availability Zones
AcceptEULA:
default: Accept Tableau End User License Agreement
AMIOS:
default: AMI Operating System
InstanceType:
default: Tableau Amazon EC2 instance type
KeyPairName:
default: Key Pair Name
Password:
default: Tableau Services Manager (TSM) administrator password
PublicSubnet1CIDR:
default: Public Subnet 1 CIDR
PublicSubnet2CIDR:
default: Public Subnet 2 CIDR
QSS3BucketName:
default: Quick Start S3 Bucket Name
QSS3KeyPrefix:
default: Quick Start S3 Key Prefix
RegCity:
default: City
RegCompany:
default: Company
RegCountry:
default: Country
RegDepartment:
default: Department
RegEmail:
default: Email Address
RegFirstName:
default: First Name
RegIndustry:
default: Industry
RegLastName:
default: Last Name
RegPhone:
default: Phone
RegState:
default: State
RegTitle:
default: Title
RegZip:
default: Zip/Postal Code
SourceCIDR:
default: Source CIDR for Access
TableauServerAdminPassword:
default: Tableau Server administrator password
TableauServerAdminUser:
default: Tableau Server administrator username
TableauServerLicenseKey:
default: Tableau Activation Key
Username:
default: Tableau Services Manager (TSM) administrator username
VPCCIDR:
default: VPC CIDR
Parameters:
AvailabilityZones:
Description: 'List of Availability Zones to use for the subnets in the VPC. Note:
The logical order is preserved and 2 AZs will be used for this deployment'
Type: List<AWS::EC2::AvailabilityZone::Name>
AMIOS:
AllowedValues:
- Windows
- CentOS-7-HVM
- Ubuntu-Server-16.04-LTS-HVM
Default: CentOS-7-HVM
Description: Operating System on which Tableau Server will be deployed
Type: String
AcceptEULA:
AllowedPattern: 'yes'
AllowedValues:
- 'yes'
- 'no'
Description: 'View the EULA at the Link: https://www.tableau.com/eula'
Type: String
InstanceType:
AllowedValues:
- m4.2xlarge
- m4.4xlarge
- m4.10xlarge
- m5.4xlarge
- m5.12xlarge
- c5.4xlarge
- c4.4xlarge
- c5d.4xlarge
- r5d.4xlarge
ConstraintDescription: must be a valid EC2 instance type.
Default: m5.4xlarge
Description: Amazon EC2 instance type
Type: String
KeyPairName:
ConstraintDescription: must be the name of an existing EC2 KeyPair.
Description: Name of an existing EC2 KeyPair to enable SSH access to the instances
Type: AWS::EC2::KeyPair::KeyName
Password:
Description: Tableau Services Manager (TSM) administrator password
NoEcho: 'true'
Type: String
PublicSubnet1CIDR:
AllowedPattern: '[a-zA-Z0-9]+\..+'
Default: 10.0.128.0/20
Description: CIDR Block for the Public DMZ Subnet located in AZ1
Type: String
PublicSubnet2CIDR:
AllowedPattern: '[a-zA-Z0-9]+\..+'
Default: 10.0.144.0/20
Description: CIDR Block for the Public DMZ Subnet located in AZ2
Type: String
QSS3BucketName:
AllowedPattern: ^[0-9a-zA-Z]+([0-9a-zA-Z-]*[0-9a-zA-Z])*$
ConstraintDescription: Quick Start bucket name can include numbers, lowercase
letters, uppercase letters, and hyphens (-). It cannot start or end with a hyphen
(-).
Default: aws-quickstart
Description: S3 bucket name for the Quick Start assets. This string can include
numbers, lowercase letters, uppercase letters, and hyphens (-). It cannot start
or end with a hyphen (-).
Type: String
QSS3KeyPrefix:
AllowedPattern: ^[0-9a-zA-Z-/]*$
ConstraintDescription: Quick Start key prefix can include numbers, lowercase letters,
uppercase letters, hyphens (-), and forward slash (/).
Default: quickstart-tableau-server/
Description: S3 key prefix for the Quick Start assets. Quick Start key prefix
can include numbers, lowercase letters, uppercase letters, hyphens (-), and
forward slash (/).
Type: String
RegCity:
Description: City
Type: String
RegCompany:
Description: Company
Type: String
RegCountry:
Description: Country
Type: String
RegDepartment:
Description: Department
Type: String
RegEmail:
Description: Email
MinLength: '1'
Type: String
RegFirstName:
Description: First Name
MinLength: '1'
Type: String
RegIndustry:
Description: Industry
Type: String
RegLastName:
Description: Last Name
MinLength: '1'
Type: String
RegPhone:
Description: Phone
Type: String
RegState:
Description: State
Type: String
RegTitle:
Description: Title
Type: String
RegZip:
Description: ZIP/Postal Code
Type: String
SourceCIDR:
AllowedPattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$
ConstraintDescription: CIDR block parameter must be in the form x.x.x.x/x
Description: The CIDR address from which you will connect to the instance
Type: String
TableauServerAdminPassword:
Description: The password of the initial administrator for Tableau Server
MinLength: '1'
NoEcho: 'true'
Type: String
TableauServerAdminUser:
Description: The name of the initial administrator for Tableau Server
MinLength: '1'
Type: String
TableauServerLicenseKey:
Description: License Key (leave blank for trial)
Type: String
Username:
AllowedPattern: ^(?!(tableau|tsmagent|admin|root)$)[A-Za-z0-9]*$
Description: Tableau Services Manager (TSM) administrator username (cannot be
'tableau' or 'tsmagent' or 'admin' or 'root')
MaxLength: '30'
Type: String
VPCCIDR:
AllowedPattern: '[a-zA-Z0-9]+\..+'
Default: 10.0.0.0/16
Description: CIDR Block for the VPC
Type: String
Conditions:
InfaOnWindows: !Equals
- !Ref 'AMIOS'
- Windows
InfaOnCentos: !Equals
- !Ref 'AMIOS'
- CentOS-7-HVM
Resources:
VPCStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL: !Sub 'https://${QSS3BucketName}.s3.amazonaws.com/${QSS3KeyPrefix}submodules/quickstart-aws-vpc/templates/aws-vpc.template'
Parameters:
AvailabilityZones: !Join
- ','
- !Ref 'AvailabilityZones'
KeyPairName: !Ref 'KeyPairName'
NATInstanceType: t2.small
NumberOfAZs: '2'
PublicSubnet1CIDR: !Ref 'PublicSubnet1CIDR'
PublicSubnet2CIDR: !Ref 'PublicSubnet2CIDR'
CreatePrivateSubnets: 'false'
VPCCIDR: !Ref 'VPCCIDR'
WorkloadStack:
Type: AWS::CloudFormation::Stack
DependsOn:
- VPCStack
Properties:
TemplateURL: !Sub 'https://${QSS3BucketName}.s3.amazonaws.com/${QSS3KeyPrefix}templates/tableau-single-server.template'
Parameters:
AcceptEULA: !Ref 'AcceptEULA'
AMIOS: !Ref 'AMIOS'
InstanceType: !Ref 'InstanceType'
KeyPairName: !Ref 'KeyPairName'
Password: !Ref 'Password'
PublicSubnetID: !GetAtt 'VPCStack.Outputs.PublicSubnet1ID'
QSS3BucketName: !Ref 'QSS3BucketName'
QSS3KeyPrefix: !Ref 'QSS3KeyPrefix'
RegCity: !Ref 'RegCity'
RegCompany: !Ref 'RegCompany'
RegCountry: !Ref 'RegCountry'
RegDepartment: !Ref 'RegDepartment'
RegEmail: !Ref 'RegEmail'
RegFirstName: !Ref 'RegFirstName'
RegIndustry: !Ref 'RegIndustry'
RegLastName: !Ref 'RegLastName'
RegPhone: !Ref 'RegPhone'
RegState: !Ref 'RegState'
RegTitle: !Ref 'RegTitle'
RegZip: !Ref 'RegZip'
SourceCIDR: !Ref 'SourceCIDR'
TableauServerAdminPassword: !Ref 'TableauServerAdminPassword'
TableauServerAdminUser: !Ref 'TableauServerAdminUser'
TableauServerLicenseKey: !Ref 'TableauServerLicenseKey'
Username: !Ref 'Username'
VPCID: !GetAtt 'VPCStack.Outputs.VPCID'
Outputs:
VPCID:
Description: VPC ID
Value: !GetAtt 'VPCStack.Outputs.VPCID'
InstanceID:
Description: EC2 InstanceID of the instance running Tableau Server
Value: !GetAtt 'WorkloadStack.Outputs.InstanceID'
PublicIPAddress:
Description: Public IP Address of instance running Tableau Server
Value: !GetAtt 'WorkloadStack.Outputs.PublicIPAddress'
TableauServicesManagerURL:
Description: URL for the TSM Web UI
Value: !GetAtt 'WorkloadStack.Outputs.TableauServicesManagerURL'
TableauServerURL:
Description: URL for the Tableau Server
Value: !GetAtt 'WorkloadStack.Outputs.TableauServerURL'
有某种硬编码不允许进行 govcloud 配置,但我还无法收集到底在哪里
最佳答案
由于父模板正在使用 nested CloudFormation stacks ,子堆栈模板也需要正确:
tableau-single-server.template第253行具有硬编码的 ARN 分区:
- !Sub 'arn:aws:s3:::${QSS3BucketName}/${QSS3KeyPrefix}*'
第 245 行还有另一个硬编码的 ARN 分区:
- arn:aws:iam::aws:policy/service-role/AmazonEC2RoleforSSM
这些行可能应该使用 AWS::Partition
psuedoparameter相反
https://github.com/aws-quickstart/quickstart-tableau-server/issues/53
关于amazon-web-services - 设置 Tableau Server 以在 AWS GovCloud 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60732232/
我是使用 tableau 服务器的新手。我想知道是否可以从 tableau 服务器下载包含数据的 tableau 工作簿(链接到实时 SQL 数据库)?基本上我想要一个下载的打包表格文件,我可以将其传
Tableau 服务器安装中是否有 Tableau Desktop 可执行文件。 我有一个系统,其中 Tableau 服务器位于云中,并且想要在同一台服务器中使用 Tableau Desktop?那可
据我所知,您可以使用 Tableau Server 基于其他工作表制作工作表,但我根本不知道如何在不使用桌面版本的情况下添加新数据源并创建初始工作表。 最佳答案 从技术上讲,您可以使用 Tableau
我目前正在使用 Tableau 打包工作簿,并希望将其转换回 Tableau 工作簿,即文件中没有数据提取的纯文件。我尝试在 Tableau 中打开文件,转到数据源并选择“实时”连接而不是“提取”。文
我想知道 Tableau 中的 Percentile 函数是否在计算中包括或排除 NULL,或者更确切地说,NA 值。如果它包含 NA 值,我想知道如何自己编写函数来排除 NA 值。我是 Tablea
我正在尝试在 Ubuntu 机器 (AWS) 上将 Tableau 服务器安装作为多节点集群,每当我尝试向工作节点添加后台进程时,节点状态都会更改为降级。如果我删除后台进程,则节点状态会变回正在运行。
我有一个与此类似的数据集: 正如您所看到的,一些 ABN 附加了多个企业名称,而另一些则只有一个。 我想创建一个过滤器,允许用户只查看每个 ABN 有多个名称的那些行。 例如,过滤器将过滤掉 ABN
我正在使用 zapier 将几个品牌的数据提取到谷歌表中。我从每个工作表中提取信息作为 tableau 中的单独数据源。表格中的格式是统一的,只有值不同。 我的目标是使用完整的可视化工作表作为模板,以
这是提取到 Tableau 中的数据的快照: 成功计数定义为 [Task Status Cal]="Success"then [Wo_ID] [成功计数] 的公式为: IF [Task Status
我正在将Tableau与MarkLogic一起使用。我有以下XML结构
我知道如何使用两种不同的 Y 轴度量来创建双轴图表。有没有办法让我使用相同的度量但在双轴的两个不同范围上创建双轴图表?例如,我有一列包含收入,我想创建一个双轴图表,其中一个轴包含 2013 年的收入,
我正在尝试计算 Tableau 中列的平均值,但问题是我正在尝试使用来自另一个数据源的单个日期值(基于过滤器)来仅计算考试日期 1 THEN AVG([Raw Score]) END 基本上,我正在
使用 Tableau 8.1。 每日数据如下: Date Sales 1-1-14 $5 1-2-14 $2 ... 6-15-14 $15 可以汇总到几周的类(clas
我正在处理一些销售数据,每笔交易都有多个阶段。说阶段 A、B、C、D... 在完美的世界中,每笔交易都需要进入每个阶段,我想计算交易在每个阶段停留的差异。 假设数据可能如下所示: transactio
我正在尝试在画面中创建一个盒须图。它没有使用所有数据点进行计算,但似乎首先删除重复项。例如,我的支持 CSV 中的两行的值为 93,但只有一行能够真正生成绘图。这说明我的手段不正确。如果我查看数据,我
我需要将表格报告嵌入到另一个网页中。我们正在使用 tableau JS: http://onlinehelp.tableau.com/current/server/en-us/embed_code.h
需要有关 tableau .tdsx 使用的帮助。 当前流程:-我们将数据源(打包的 .tdsx)发布并刷新到 tableau 服务器。我们的客户下载数据源并根据其业务需求构建临时报告。 问题:-如果
我想通过创建一个新列来减少 Tableau 中的推荐者和批评者。感谢所有的帮助! 客户类型表(我想创建如下所示的 NPS 字段): +---------+------------+----------
我在计算中使用了一个数字,并且必须将其转换为字符串。当我这样做时,我丢失了逗号格式。使用另一篇文章: 更改字符串中的数字格式 但是,我使用的公式是: STR(ROUND(LOOKUP(sum([Act
我有两台服务器,一台服务器 #1 使用办公室网络托管在办公室(这台服务器在 ubuntu 服务器上托管 tableau 服务器),另一台服务器服务器 #2 位于另一个并置网络中。 Web 应用程序托管
我是一名优秀的程序员,十分优秀!