What file format should you use to register Tableau Server from the command line?
Registering Tableau Server from the command line involves providing configuration details (e.g., identity store, license) via the tsm register command. Let's explore this fully:
Registration Process:
Run during initial setup or to update settings (e.g., after changing AD/LDAP config).
Uses a configuration file to pass parameters to TSM.
Command: tsm register --file
File Format:
Tableau Server uses JSON for configuration files in TSM commands like tsm register.
Example:
json
CollapseWrapCopy
{
'identityStore': {
'type': 'local',
'domain': 'example.com'
}
}
JSON is structured, machine-readable, and aligns with Tableau's modern CLI design.
Option C (JSON): Correct.
Official format for tsm register, per documentation and practical use.
Option A (YML): Incorrect.
While tabsvc.yml exists internally, it's not for registration---tsm register uses JSON.
Option B (XML): Incorrect.
Older Tableau configs used XML (e.g., workgroup.yml pre-TSM), but TSM standardized on JSON.
Option D (HTTP): Incorrect.
HTTP is a protocol, not a file format---irrelevant here.
Why This Matters: Correct file format ensures seamless registration, avoiding CLI errors in setup or migrations.
Dong
6 days agoFernanda
11 days agoGilma
16 days agoLeota
21 days agoArmanda
26 days agoHollis
1 month agoHerminia
1 month agoDenny
1 month agoLeatha
2 months agoLuisa
2 months agoNickolas
2 months agoLacresha
2 months ago