-
-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Connect from a remote host? #398
Comments
Hi! You can do:
let me know if this works! |
It does! Thank you. |
(This syntax will change very soon - sorry in advance :))))) |
Anyone have an update on this? I'm SSH'ing to my computer's HPC and the regular way of getting a jupyter notebook is:
The hostname being something like the compute node: And then in putty I would set it as done here With Any advice? |
If you want a one-liner that works from the terminal, this should do it. julia -e "using Pluto; Pluto.run(host=\"0.0.0.0\", port=1234, launch_browser=false)" Then you can open Pluto by going to |
@ctrekker Ok looks like rather than pasting the: I had to use: It's interesting that even when I specifically used that ip address: It didn't work. |
Glad you found a solution! I'm guessing there's something on your computer acting as a proxy, since |
Hello,
I am new to Julia, and I don't know how to find package documentation (yet), so I might ask a stupid question.
So I am trying to do the new julia course, but I run julia on a remote host (on the LAN). When I start Pluto.jl with Pluto.run(), I can connect to the server on the host itself but not over the network.
When I check netstat, I see that the server is listening on 127.0.0.1:1234. I think that I want this to be 0.0.0.0:1234, so that I can connect from a remote host.
Any of you know how to do that? Much appreciated. The host I want to use runs Debian.
The text was updated successfully, but these errors were encountered: