user271077
user271077

Reputation: 1006

cannot open browser for tensorboard

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

Answers (2)

Jonas Adler
Jonas Adler

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

JCooke
JCooke

Reputation: 970

This is often resolved by using http://localhost:6006

Upvotes: 6

Related Questions