Unable to open Tensorboard in browser

后端 未结 10 601
眼角桃花
眼角桃花 2020-12-24 02:50

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

10条回答
  •  不知归路
    2020-12-24 03:44

    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.

提交回复
热议问题