Products | Versions |
---|---|
Spotfire Data Science | 6.x |
service iptables restart
chkconfig --level 345 iptables on
#for cleaning all the existing rules
iptables -F
#fully open up incoming, outgoing and forwarding traffic
iptables --policy INPUT ACCEPT
iptables --policy OUTPUT ACCEPT
iptables --policy FORWARD ACCEPT
#saving the changes not to lose them when iptables are restarted
service iptables save
Run these commands so that Spotfire Data Science is available on port 443 by forwarding the traffic to the SSL enabled Spotfire Data Science that is running on 8443:
iptables -t nat -I PREROUTING --src 0/0 -p tcp --dport 443 -j REDIRECT --to-ports 8443
iptables -A FORWARD -p tcp -m tcp --dport 443 -j ACCEPT
Now try accessing Spotfire Data Science from your web browser with https://your_hostname link (without specifying any port - which means 443 will be used with HTTPS protocol).