无法在AWS上连接Jupyter Notebook

时间:2018-12-01 00:00:43

标签: amazon-web-services jupyter-notebook

我无法在AWS上连接jupyter笔记本。我在SO上尝试了几种解决方案,包括从任何IP使用端口8888设置安全组规则,设置配置文件,如:

c = get_config()

# Notebook config this is where you saved your pem cert
c.NotebookApp.certfile = u'/home/ubuntu/certs/mycert.pem' 
# Run on all IP addresses of your instance
c.NotebookApp.ip = '*'
# Don't open browser by default
c.NotebookApp.open_browser = False  
# Fix port to 8888
c.NotebookApp.port = 8888

此外,我尝试使用jupyter notebook --ip=my_aws_ip --port=8888。对于登录部分,我使用ssh -i <pem key> ubuntu@<ec2...> -L 8888:localhost:8888以上所有解决方案都返回了https://ip-172-31-44-200:8888/?token=******,但我无法在Web浏览器中打开该URL,说的是ip-172-31-44-200’s server IP address could not be found.

有什么解决办法吗?预先感谢!

1 个答案:

答案 0 :(得分:0)

正如@AlexK在评论中提到的,我应该使用DNS或公共IP连接jupyter笔记本。对于存在相同问题的人员,您可以在AWS实例选项卡下找到公共DNS(IPv4),然后使用jupyter notebook --ip=ec2-**.******.compute.amazonaws.com连接jupyter notebook。现在jupyter notebook应该可以在AWS上完美运行。