I am following google cloud machine learning tutorial and I am unable to Launch TensorBoard
I\'ve followed the steps in the above tutorial (also set up my environme
In my case, the port was not open. Opening the port, helped me. This process was done on Linux.
Here is what I did:
First I checked if the port is open or not.
netstat -tulpn
You can check it by above code.
Then open the port by following code. Just change the port number in place of 8080
sudo /sbin/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
sudo iptables-save
This should solve the issue.