On 8 December 2016 at 06:49, <[email protected]> wrote: > However I want to be able to access my server from anywhere to run some > script in my webbrowser without having to keep my computer terminal open > all the time. Or others to check some results on my notebook or do some > test while I am sleep and and course I don't want to give them ssh access > to my server so they can't run jupyter on the terminal. > Is there any daemon on linux that allow me to do that, like unicorn for > ruby for example. >
First: be aware that giving someone access to your notebook server is equivalent to giving them SSH access - they can run any code as your user account. So if you don't trust them enough to give them ssh access, don't give them notebook access! I'm not sure exactly what you're asking for. The notebook server already runs as a web server, and the instructions you linked to should make it accessible from other computers. If you want to keep it running when you close your terminal, you can run it in a tool like 'screen' or 'nohup'. It would also be possible to configure it as a service, so it starts automatically when you start your computer, and keeps running until it's shut down. Thomas -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/CAOvn4qgJw3JbB2HCZyx%2ByAhb6NXzMOpsmHD%2B8egOeRTEqd19Yw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
