No, you put that in the ssh command you use to connect to the server. You put "localhost" for the server name and whatever port Jupyter opens up, which is 8888 unless that's already taken. So you would use `ssh -L 8888:localhost:8888 hostname` to connect and then you could point your browser to localhost:8888 to connect to the Jupyter instance.
On Wed, May 25, 2016 at 10:09 AM, <[email protected]> wrote: > This means that I have to write in the command line (after login in the > server): > ssh -L 8888:(servername):(which number?) (pc's name) > > But which port should I put after the server's name? > > Thank u, > H. > > Le mercredi 25 mai 2016 14:02:22 UTC+2, Stefan Karpinski a écrit : >> >> Using SSH port forwarding >> <https://help.ubuntu.com/community/SSH/OpenSSH/PortForwarding> may be >> significantly easier than setting up a secure public Jupyter server. If you >> regularly connect to the same server, you can even setup your .ssh/config >> file so that port forwarding is done automatically when you connect to that >> machine. Then again, if you connect to the same server all the time, then >> maybe the secure public Jupyter server setup is worth it. The ssh -X >> suggestion, while a good thought, isn't relevant here since Jupyter is not >> an X application – it's a web app. >> >> On Wed, May 25, 2016 at 5:30 AM, Lutfullah Tomak <[email protected]> >> wrote: >> >>> You need to look at jupyter/ipython settings, specifically you need to >>> allow your host ip for connection. >>> Related places are >>> https://ipython.org/ipython-doc/3/notebook/public_server.html >>> http://jupyter-notebook.readthedocs.io/en/latest/public_server.html >>> >>> >>> On Wednesday, May 25, 2016 at 10:54:53 AM UTC+3, [email protected] >>> wrote: >>> >>>> >>>> >>>> Hello, >>>> >>>> I need to use julia through a linux server. I can use julia but I can >>>> not properly use an IDE. I could instal IJulia but I can not open it by >>>> doing using IJulia notebook(). >>>> I can neither open notebook by doing ipython notebook (my access is >>>> refused). >>>> Do you have any idea how could I open an IDE from the server in my >>>> personal pc? >>>> >>>> Thank you very much! >>>> H. >>>> >>> >>
