When Tableau Gateway services are not starting after restart and you see below error in the httpd log use the commands with root access replacing the version of gateway server version.
(13)Permission denied: AH00072: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
setcap CAP_NET_BIND_SERVICE=+eip /u01/tableau/data/tabsvc/services/gateway_0.xx.xx.xx/apache/bin/httpd
Change Gateway port from 80 to 443 or 8080 To change the Gateway port from 80 to 443 then use below commands First , list your nodes with the command. tsm topology list-node Then execute the command to set port tsm topology set-ports --node-name node1 --port-name gateway:primary --port-value 443 The above command will ask for a restart. Check ports using tsm topology list-ports If some error occurs in applying changes: try disabling (enable later) external ssl first- tsm security external-ssl disable You might need to run init command again with new port- tsm reset tabcmd initialuser --server localhost:443 --username 'ADMINUSER' --password 'adminpwd'
Comments
Post a Comment