tableau分布式添加节点

参考:

两节点的安装:
https://zhuanlan.zhihu.com/p/44732932
https://help.tableau.com/current/server-linux/zh-cn/install_additional_nodes.htm

各进程说明:
https://help.tableau.com/current/server-linux/zh-cn/processes.htm

扩展节点:
1/ 在web8850的后台下载json文件,传到新节点上。

#用命令行的方法,不推荐
在初始节点上,打开终端会话。
键入以下命令来生成引导程序文件:
tsm topology nodes get-bootstrap-file --file <pathfile>.json
从版本 2019.3 开始,引导程序文件中默认包括嵌入式凭据。如果不希望引导程序文件包括凭据,请使用 -nec or --no-embedded-credentials 选项:
tsm topology nodes get-bootstrap-file --file <pathfile>.json --no-embedded-credentials

2/ 复制安装包到新节点:
sudo yum update
sudo yum install tableau-server-<version>.x86_64.rpm

3/初始化新节点与初始节点之间的通信
在新节点上:
cd /opt/tableau/tableau_server/packages/scripts.<version_code>/

运行initialize-tsm 脚本:
如果生成的引导程序文件没有嵌入式凭据,请使用 -u 标志指定初始节点上管理用户的用户名
sudo ./initialize-tsm -b /path/to/<bootstrap>.json -u <admin-user-on-first-node> --accepteula

4/ 安装好后根据硬件配置在新节点上起服务:
https://help.tableau.com/current/server-linux/zh-cn/server_baseline_config.htm

到8850后台,在node2上配置相应服务:

 点pending的change,应用更改,重启服务

连mysql也需要装ODBC驱动

原文地址:https://www.cnblogs.com/hongfeng2019/p/11551123.html