Why This Matters: Correct syntax ensures maintenance tasks execute without errors—critical for server health.
[Reference: Tableau Server Documentation - "TSM Maintenance Commands" (https://help.tableau.com/current/server/en-us/cli_maintenance_tsm.htm)., ]
Question 2
What process enables you to access Tableau Services Manager (TSM) over HTTPS?
Options:
A.
License Manager
B.
Administration Controller
C.
Administration Agent
D.
Coordination Service
Answer:
B
Explanation:
TSM is Tableau Server’s management layer, accessible via CLI or web UI (port 8850). HTTPS secures this access—let’s identify the responsible process:
TSM Architecture:
Administration Controller: Core TSM process, running on the initial node, handling configuration, UI, and CLI commands.
HTTPS: Enabled by default on port 8850 with a self-signed certificate (configurable to custom certs).
Option B (Administration Controller): Correct.
Details: Hosts the TSM web UI :8850) and processes CLI requests. It manages the HTTPS listener, serving the interface securely.
Why: It’s the central hub for TSM operations, including secure access.
Option A (License Manager): Incorrect.
Why: Validates licenses, not responsible for HTTPS or UI access.
Option C (Administration Agent): Incorrect.
Why: Runs on additional nodes in multi-node setups to relay commands to the Controller—no direct HTTPS role.
Option D (Coordination Service): Incorrect.
Why: ZooKeeper manages cluster state, not TSM’s web interface or HTTPS.
Why This Matters: Secure TSM access protects server administration—Administration Controller is the linchpin.
[Reference: Tableau Server Documentation - "TSM Overview" (https://help.tableau.com/current/server/en-us/tsm_overview.htm)., ]
Question 3
Which three types of data should you backup to ensure that you can restore a Tableau Server? (Choose three.)
Options:
A.
Server secrets and Repository passwords
B.
Topology data
C.
Configuration data
D.
Repository data
Answer:
A, C, D
Explanation:
Backing up Tableau Server ensures recovery from failures or migrations. A full backup includes multiple data types—let’s dissect this comprehensively:
Backup Components:
Repository Data: PostgreSQL database with metadata (users, permissions, workbooks). Backed up via tsm maintenance backup -f .tsbak.
Configuration Data: Server settings (e.g., ports, authentication) also in the .tsbak file.
Server Secrets: Encryption keys, internal tokens, Repository passwords—critical for restoring functionality.
Extracts: .hyper files in File Store (optional, separate backup).
Option A (Server secrets and Repository passwords): Correct.
Details: Includes encryption keys (for extracts), internal tokens (process communication), and Repository credentials. Backed up separately or stored securely (e.g., tsm security export-keys).
Why Critical: Without these, restored data may be inaccessible or services may fail.
Option C (Configuration data): Correct.
Details: Ports, authentication settings, process topology—part of the .tsbak file.
Why Critical: Restores server behavior and connectivity post-recovery.
Option D (Repository data): Correct.
Details: Core metadata database—also in .tsbak.
Why Critical: Without it, all content and user data is lost.
Option B (Topology data): Incorrect.
Details: Topology (process distribution) is part of configuration data in the .tsbak, not a separate entity. It’s not distinctly backed up as “topology data.”
Why This Matters: A complete backup (secrets, config, repository) ensures full restoration—missing any piece risks an unusable server.
[Reference: Tableau Server Documentation - "Back Up Tableau Server Data" (https://help.tableau.com/current/server/en-us/backup_restore.htm)., ]