Moved ssh out into a specific instruction instead of being expected for all machines, like a Windows machine Added rdp instructions
9 lines
583 B
HTML
9 lines
583 B
HTML
<h3>Jupyter</h3>
|
|
|
|
<p>To access jupyter you will need to set up a ssh tunnel binding your local machine. You will also need to know what port and token it is using. On your machine you can get both by running</p>
|
|
<pre>jupyter notebook list</pre>
|
|
<p>If you want to bind your local port 8888 to your VMs port 8888 you can use:</p>
|
|
<pre>ssh -N -L 8888:localhost:8888 {{username}}@{{dns}} </pre>
|
|
<p>Observe that you will not get any feedback that the connection is currently active</p>
|
|
<p>From here you can access jupyter notebook in your browser by going to</p>
|
|
<pre>localhost:8888</pre> |