Re: [julia-users] Re: Opening a julia's IDE from a linux server

2016-05-25 Thread Stefan Karpinski
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  unless that's already taken. So you would use `ssh -L
:localhost: hostname` to connect and then you could point your
browser to localhost: to connect to the Jupyter instance.

On Wed, May 25, 2016 at 10:09 AM,  wrote:

> This means that I have to write  in the command line (after login in the
> server):
> ssh -L :(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
>>  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 
>> 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, hilili...@gmail.com
>>> 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.

>>>
>>


Re: [julia-users] Re: Opening a julia's IDE from a linux server

2016-05-25 Thread hililielala16
This means that I have to write  in the command line (after login in the 
server):
ssh -L :(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 
>  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  > 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, hilili...@gmail.com 
>> 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.
>>>
>>
>

Re: [julia-users] Re: Opening a julia's IDE from a linux server

2016-05-25 Thread Stefan Karpinski
Using SSH port forwarding
 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 
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, hilili...@gmail.com
> 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.
>>
>


[julia-users] Re: Opening a julia's IDE from a linux server

2016-05-25 Thread Lutfullah Tomak
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, hilili...@gmail.com 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.
>


[julia-users] Re: Opening a julia's IDE from a linux server

2016-05-25 Thread hililielala16
Hello Kaj,

Do you mean I should do ssh -notebook ?


Le mercredi 25 mai 2016 10:25:09 UTC+2, Kaj Wiik a écrit :
>
> ssh -X ?
>
> Kaj
>
> On Wednesday, May 25, 2016 at 10:54:53 AM UTC+3, hilili...@gmail.com 
> 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.
>>
>

[julia-users] Re: Opening a julia's IDE from a linux server

2016-05-25 Thread Kaj Wiik
ssh -X ?

Kaj

On Wednesday, May 25, 2016 at 10:54:53 AM UTC+3, hilili...@gmail.com 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.
>