0%

A Command to Solve the Issue of Remote Access the Jupyter Servers Running on AWS

Recently I try to install the Jupyter server on the AWS to achieve a remote access. I thought it was a very little case but encountered a lot of problems and spent almost a day to solve them.

Finally, in the forum of Jupyter I found a very simple but effective solution:

1
ssh -i <your key.pem> -NfL <local port>:localhost:<server port> <user@ip>

It use command-NfLto forward the port of the remote server to the local port.

Try to solve and share the problems you met during the deployed in the comment.