I cannot connect to an IPython laptop running on AWS EC2

I am running an AWS EC2 GPU instance. And I'm setting up the iPython laptop in this instance following the tutorial .

In the last step, I used this command:

sudo ipython notebook --profile=nbserver

to launch iPython laptop. Everything seems to be in order. Output Information:

[I 14:14:30.214 NotebookApp] Using MathJax from CDN: https://cdn.mathjax.org/mathjax/latest/MathJax.js
[I 14:14:30.230 NotebookApp] Serving notebooks from local directory: /home/ubuntu
[I 14:14:30.230 NotebookApp] 0 active kernels
[I 14:14:30.230 NotebookApp] The IPython Notebook is running at: https://[all ip addresses on your system]:8888/
[I 14:14:30.230 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).

However, I use my browser to launch the remote iPython laptop:

https://ec2-54-66-247-201.ap-southeast-2.compute.amazonaws.com:8888/

But I fail at this step. I have no idea. Any suggestion?

+4
source share
1 answer

You will need to open port 8888 for inbound traffic in the security group associated with your Amazon EC2 instance.

Security Group rules

+8
source

All Articles