Hi Everyone,
On my last post, I mentioned to Easy DWH and Easy Dashboarding that post is related with my last post.
Lets Start;
Create a folder and store downloaded file in that path.
mkdir tableauinst
wget https://www.tableau.com/downloads/server/deb
Step 1: Install Tableau Server package and start Tableau Services Manager
Install Tableau Server with your distribution’s package manager, then run a script to initialize Tableau Services Manager (TSM). Tableau Services Manager is the management toolset used to install, configure, and manage Tableau services.
The initialize script is included with the installed package.
1 – Log on as a user with sudo access to the computer where you want to install Tableau Server.
2 – Navigate to the directory where you copied the Tableau Server installation package.
3 – Use the package manager to install the Tableau Server package.
sudo apt-get update
sudo apt-get -y install gdebi-core
sudo gdebi -n tableau-server-<version>_amd64.deb
4 – Run the following script to start TSM:
sudo ./initialize-tsm –accepteula
5 – After initialization is complete, close the terminal session:
logout
6 – Navigate to the scripts directory:
cd /opt/tableau/tableau_server/packages/scripts.<version>
7 – If your organization uses a forward proxy solution to access the internet, then configure Tableau Server to use the proxy server. Tableau Server must access the internet for map data and for default licensing functionality.
Step 2: Activate and register Tableau Server
Before you can configure Tableau Server you must activate a license and register.
Beginning by logging on to the TSM web UI. See Sign in to Tableau Services Manager Web UI.
The most important configuration on this Setup page is the identity store option.
I did Local Auth, so you can specify others, check on Tableau website.
Step 4: Create the Tableau Server administrator account
Create the Tableau Server administrator account.
- If you are using LDAP for authentication, then the account that you specify here must be a user in the directory.
Run the following command:
tabcmd initialuser --server 'localhost:80' –username '<AD-user-name>'
- On the other hand, if you are running Tableau Server with local authentication, the username and password that you specify here will be used to create the administrative account. Enter a strong password for this account.
Run the following command:
tabcmd initialuser --server 'localhost:80' --username 'admin'
Use this account to access the Tableau Server admin web pages.
We recommend that you run a local firewall on the computer that is running Tableau Server. This is a security best practice. By default, Linux distributions do not enable firewall during standard installations.
If you have installed or enabled a local firewall then you must open two ports for Tableau Server. These ports are the gateway port (TCP 80) and the tabadmincontroller port (TCP 8850). The following procedure shows an example of how to open these ports using Firewalld, which is the default firewall on CentOS. If you are using a different firewall then you’ll need to determine the right commands to run to open these ports.
- Start firewalld:
sudo systemctl start firewalld
- Set default zone to public. Run the following command:
sudo firewall-cmd --set-default-zone=public
- Add ports for the gateway port and the tabadmincontroller port. Run the following commands:
sudo firewall-cmd --permanent --add-port=80/tcp
sudo firewall-cmd --permanent --add-port=8850/tcp
- Reload the firewall and verify the settings. Run the following commands:
sudo firewall-cmd --reload
sudo firewall-cmd --list-all
Bingo, Tableau is working now, just a sample from tableau dashboard 🙂