简体   繁体   English

Tableau 安装 AWS 发现数据目录只有 0 GB

[英]Tableau install AWS found only 0 GB for the data directory

I am creating a Tableau Server self-deployed instance on EC2.我正在 EC2 上创建一个 Tableau Server 自部署实例。

I created the EC2 instance using:我使用以下方法创建了 EC2 实例:

resource "aws_instance" "tableau" {
  ami           = "amzn2-ami-hvm-*-x86_64-ebs"
  instance_type = "m5.4xlarge"
  vpc_security_group_ids = var.sg
  subnet_id = var.private_subnet
  associate_public_ip_address = false
  key_name = var.key_name

  tags = {
    Name = var.namespace
  }
}

The instance is working fine and once I logged in I did:该实例工作正常,登录后我做了:

#Download tableau installer

wget https://downloads.tableau.com/esdalt/2021.1.2/tableau-server-2021-1-2.x86_64.rpm

#Install tableau

sudo yum update
sudo yum install tableau-server-2021-1-2.x86_64.rpm

#Initialize TSM

cd /opt/tableau/tableau_server/packages/scripts.20211.21.0511.0935

sudo ./initialize-tsm --accepteula --accepteula -f

This last statement returns:最后一条语句返回:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

    WARNING: Tableau Server requires at least 15 GB of free disk space to run,
    but found only 0 GB for the data directory '/var/opt/tableau/tableau_server'.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Starting TSM services...
No se pudo realizar la operación.
Se ha producido un error durante la instalación.
org.apache.zookeeper.KeeperException$NoAuthException: KeeperErrorCode = NoAuth for /tableau/tabsvc-clusterid/ports
ERROR: TSM services returned status 10

The volume is:音量是:

df -hT

S.ficheros     Tipo     Tamaño Usados  Disp Uso% Montado en
devtmpfs       devtmpfs    32G      0   32G   0% /dev
tmpfs          tmpfs       32G   4,0K   32G   1% /dev/shm
tmpfs          tmpfs       32G   560K   32G   1% /run
tmpfs          tmpfs       32G      0   32G   0% /sys/fs/cgroup
/dev/nvme0n1p1 xfs        8,0G   7,6G  452M  95% /
tmpfs          tmpfs      6,3G      0  6,3G   0% /run/user/0
tmpfs          tmpfs      6,3G      0  6,3G   0% /run/user/995
tmpfs          tmpfs      6,3G      0  6,3G   0% /run/user/1000

I tried creating a new volume for the specific path /var/opt/tableau but terraform returns an error as device_name is not valid due it is the /var path.我尝试为特定路径/var/opt/tableau创建一个新卷,但 terraform 返回错误,因为device_name无效,因为它是/var路径。

I don't find how to add extra size for this specific and default path for tableau install.我找不到如何为画面安装的这个特定和默认路径添加额外的大小。 I would like to use default path to avoid extra setup for users, and others if I install the Tableau server in a different path.如果我在不同的路径中安装 Tableau 服务器,我想使用默认路径来避免对用户和其他人进行额外设置。

Any idea how to add the /var path to the EBS volume?知道如何将/var路径添加到 EBS 卷吗?

I created the volume with more GB and its fixes, one of the tmpfs is where /var is located at.我创建了具有更多 GB 的卷及其修复程序,其中一个 tmpfs 是/var所在的位置。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM