Skip to content

Instantly share code, notes, and snippets.

@abdulhadad
Last active August 29, 2015 14:10
Show Gist options
  • Save abdulhadad/7801a14d712a15846775 to your computer and use it in GitHub Desktop.
Save abdulhadad/7801a14d712a15846775 to your computer and use it in GitHub Desktop.
Set trusted tableau host and restart tableau
set TABLEAU_SVR_DIR="C:\Program Files\Tableau\Tableau Server\8.1"
pushd %TABLEAU_SVR_DIR%\bin
rem stop tableau server
tabadmin stop
rem tabadmin set wgserver.trusted_hosts "ip1, ip2"
tabadmin set wgserver.trusted_hosts "127.0.0.1, 192.168.230.129"
rem set the log level of log vizqlserver log, set info or debug
tabadmin set server.log.level "info"
rem config tableau
tabadmin config
rem start tableau server
tabadmin start
popd
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment