Reputation: 1006
I am running the mnist_wiht_summaries
and running the tensorboard pointing to the same log dir. It seems like the tensorboard is running successfully it shows:
Starting TensorBoard 47 at http://0.0.0.0:6006
(Press CTRL+C to quit)
but when I open http:/0.0.0.0:6006
it indicates
Network Error (tcp_error)
A communication error occurred: "" The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
For assistance, contact your network support team.
Upvotes: 1
Views: 3993
Reputation: 10809
I have had this issue myself several times. What you can do is access your computer at its external IP address.
Simply run ipconfig
(windows) or ifconfig
(linux) to find the ip adress, and then open your browser at that adress, e.g. 10.153.82.75:6006
.
In some cases, it also seems that accessing localhost:6006
works.
Upvotes: 1