Last active
August 29, 2015 14:10
-
-
Save abdulhadad/7801a14d712a15846775 to your computer and use it in GitHub Desktop.
Set trusted tableau host and restart tableau
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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