本文介绍了在AWS上访问Tensorboard的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试访问AWS上的Tensorboard。这是我的设置:
I'm trying to access Tensorboard on AWS. Here is my setting :
- Tensorboard:
tensorboard --host 0.0.0.0 --logdir = train
:
- Tensorboard :
tensorboard --host 0.0.0.0 --logdir=train
:
- AWS安全组(输入):
- HTTPS TCP 443 0.0.0.0/ 0
- Custom_TCP TCP 6006 0.0.0.0/0
但是连接到
ec2-blabla.us-west-1.compute.amazonaws.com:6006
我什么都看不到,我基本上看不到连接。However connecting to
ec2-blabla.us-west-1.compute.amazonaws.com:6006
I can't see anything, I basically can't connect.您有任何想法吗?
推荐答案
您可以使用ssh
在您的终端中,您可以编写:
In your terminal you can write:
ssh -i /path/to/your/AWS/key/file -NL 6006:localhost:6006 user@host
其中用户和主机是您的AWS EC2用户和实例特定的。
where user and host are your aws ec2 user and instance specific.
此后,您可以浏览到
这篇关于在AWS上访问Tensorboard的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!