2013-11-02 10:14:09 +08:00
|
|
|
.. _working_remotely:
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2013-08-08 16:17:05 +08:00
|
|
|
Running a notebook server
|
|
|
|
=========================
|
2013-07-25 21:21:38 +08:00
|
|
|
|
|
|
|
|
2015-09-17 02:57:35 +08:00
|
|
|
The :doc:`Jupyter notebook <notebook>` web application is based on a
|
|
|
|
server-client structure. The notebook server uses a :ref:`two-process kernel
|
|
|
|
architecture <ipython:ipythonzmq>` based on ZeroMQ_, as well as Tornado_ for
|
|
|
|
serving HTTP requests.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
By default, a notebook server runs locally at 127.0.0.1:8888
|
|
|
|
and is accessible only from `localhost`. You may access the
|
|
|
|
notebook server from the browser using `http://127.0.0.1:8888`.
|
|
|
|
|
|
|
|
This document describes how you can
|
|
|
|
:ref:`secure a notebook server <notebook_server_security>` and how to
|
|
|
|
:ref:`run it on a public interface <notebook_public_server>`.
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2013-08-08 05:14:38 +08:00
|
|
|
.. _ZeroMQ: http://zeromq.org
|
|
|
|
|
|
|
|
.. _Tornado: http://www.tornadoweb.org
|
|
|
|
|
|
|
|
|
2014-04-03 01:11:12 +08:00
|
|
|
.. _notebook_server_security:
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2014-03-26 04:10:51 +08:00
|
|
|
Securing a notebook server
|
|
|
|
--------------------------
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2013-08-08 16:17:05 +08:00
|
|
|
You can protect your notebook server with a simple single password by
|
2015-09-17 02:57:35 +08:00
|
|
|
configuring the :attr:`NotebookApp.password` setting in
|
|
|
|
:file:`jupyter_notebook_config.py`.
|
|
|
|
|
|
|
|
Preparing a hashed password
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
You can prepare a hashed password using the function
|
|
|
|
:func:`notebook.auth.security.passwd`:
|
2013-07-25 21:21:38 +08:00
|
|
|
|
|
|
|
.. sourcecode:: ipython
|
|
|
|
|
2015-08-07 01:51:51 +08:00
|
|
|
In [1]: from notebook.auth import passwd
|
2013-07-25 21:21:38 +08:00
|
|
|
In [2]: passwd()
|
2015-09-17 02:57:35 +08:00
|
|
|
Enter password:
|
|
|
|
Verify password:
|
2013-07-25 21:21:38 +08:00
|
|
|
Out[2]: 'sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed'
|
2015-09-17 02:57:35 +08:00
|
|
|
|
|
|
|
.. caution::
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-09-17 03:51:17 +08:00
|
|
|
:func:`~notebook.auth.security.passwd` when called with no arguments
|
|
|
|
will prompt you to enter and verify your password such as
|
|
|
|
in the above code snippet. Although the function can also
|
|
|
|
be passed a string as an argument such as ``passwd('mypassword')``, please
|
|
|
|
**do not** pass a string as an argument inside an IPython session, as it
|
2013-07-25 21:21:38 +08:00
|
|
|
will be saved in your input history.
|
|
|
|
|
2015-09-17 02:57:35 +08:00
|
|
|
Adding hashed password to your notebook configuration file
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2015-09-17 03:51:17 +08:00
|
|
|
You can then add the hashed password to your :file:`jupyter_notebook_config.py`.
|
|
|
|
The default location for this file ``jupyter_notebook_config.py`` in your Jupyter
|
|
|
|
folder in your home directory, ``~/.jupyter``.
|
2015-09-17 02:57:35 +08:00
|
|
|
e.g.::
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-09-17 03:51:17 +08:00
|
|
|
# Get notebook configuration and add hashed password
|
2013-07-25 21:21:38 +08:00
|
|
|
c = get_config()
|
2015-09-17 02:57:35 +08:00
|
|
|
c.NotebookApp.password =
|
2013-07-25 21:21:38 +08:00
|
|
|
u'sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed'
|
|
|
|
|
2015-09-17 02:57:35 +08:00
|
|
|
Using SSL for encrypted communication
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
When using a password, it is a good idea to also use SSL with a web certificate,
|
|
|
|
so that your hashed password is not sent unencrypted by your browser.
|
|
|
|
|
|
|
|
.. important::
|
|
|
|
Web security is rapidly changing and evolving. We provide this document
|
|
|
|
as a convenience to the user, and recommend that the user keep current on
|
|
|
|
changes that may impact security, such as new releases of OpenSSL.
|
|
|
|
The Open Web Application Security Project (`OWASP`_) website is a good resource
|
|
|
|
on general security issues and web practices.
|
|
|
|
|
|
|
|
You can start the notebook to communicate via a secure protocol mode by setting
|
2015-09-17 03:51:17 +08:00
|
|
|
the ``certfile`` option to your self-signed certificate, i.e. ``mycert.pem``,
|
|
|
|
with the command::
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-09-17 02:57:35 +08:00
|
|
|
$ jupyter notebook --certfile=mycert.pem
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-09-17 03:51:17 +08:00
|
|
|
.. tip::
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-09-17 02:57:35 +08:00
|
|
|
A self-signed certificate can be generated with ``openssl``. For example,
|
|
|
|
the following command will create a certificate valid for 365 days with
|
2013-07-25 21:21:38 +08:00
|
|
|
both the key and certificate data written to the same file::
|
|
|
|
|
2013-08-30 06:29:40 +08:00
|
|
|
$ openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-09-17 03:51:17 +08:00
|
|
|
When starting the notebook server, your browser may warn that your self-signed
|
|
|
|
certificate is insecure or unrecognized. If you wish to have a fully
|
|
|
|
compliant self-signed certificate that will not raise warnings, it is possible
|
|
|
|
(but rather involved) to create one, as explained in detail in `this tutorial`__.
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2013-08-08 16:17:05 +08:00
|
|
|
.. __: http://arstechnica.com/security/news/2009/12/how-to-get-set-with-a-secure-sertificate-for-free.ars
|
2015-09-17 03:51:17 +08:00
|
|
|
|
|
|
|
.. TODO: Find an additional resource that walks the user through this two-process step by step.
|
|
|
|
|
2013-07-25 21:21:38 +08:00
|
|
|
Keep in mind that when you enable SSL support, you will need to access the
|
|
|
|
notebook server over ``https://``, not over plain ``http://``. The startup
|
2015-09-17 03:51:17 +08:00
|
|
|
message from the server prints a reminder in the console, but it is easy to
|
|
|
|
overlook this detail and think the server is for some reason non-responsive.
|
|
|
|
**When using SSL, always access the notebook server with ``https://``.**
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-09-17 02:57:35 +08:00
|
|
|
.. _OWASP: https://www.owasp.org
|
|
|
|
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2013-08-08 16:17:05 +08:00
|
|
|
.. _notebook_public_server:
|
2013-07-25 21:21:38 +08:00
|
|
|
|
|
|
|
Running a public notebook server
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
If you want to access your notebook server remotely via a web browser,
|
2015-09-17 03:51:17 +08:00
|
|
|
you can do the following.
|
2013-07-25 21:21:38 +08:00
|
|
|
|
|
|
|
Start by creating a certificate file and a hashed password, as explained
|
2015-06-02 23:20:01 +08:00
|
|
|
above. Then, if you don't already have one, create a config file for the
|
|
|
|
notebook using the following command line::
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-06-02 23:20:01 +08:00
|
|
|
$ jupyter notebook --generate-config
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2015-06-02 23:20:01 +08:00
|
|
|
In the ``~/.jupyter`` directory, edit the notebook config file,
|
2015-05-30 04:51:21 +08:00
|
|
|
``jupyter_notebook_config.py``. By default, the file has all fields
|
2013-07-25 21:21:38 +08:00
|
|
|
commented; the minimum set you need to uncomment and edit is the following::
|
|
|
|
|
|
|
|
c = get_config()
|
|
|
|
|
|
|
|
# Notebook config
|
|
|
|
c.NotebookApp.certfile = u'/absolute/path/to/your/certificate/mycert.pem'
|
|
|
|
c.NotebookApp.ip = '*'
|
|
|
|
c.NotebookApp.open_browser = False
|
|
|
|
c.NotebookApp.password = u'sha1:bcd259ccf...[your hashed password here]'
|
|
|
|
# It is a good idea to put it on a known, fixed port
|
|
|
|
c.NotebookApp.port = 9999
|
|
|
|
|
|
|
|
You can then start the notebook and access it later by pointing your browser
|
2015-06-02 23:20:01 +08:00
|
|
|
to ``https://your.host.com:9999`` with ``jupyter notebook``.
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2014-11-18 21:56:29 +08:00
|
|
|
|
|
|
|
Firewall Setup
|
2015-09-17 03:51:17 +08:00
|
|
|
~~~~~~~~~~~~~~
|
2014-11-18 21:56:29 +08:00
|
|
|
|
2014-11-19 00:22:46 +08:00
|
|
|
To function correctly, the firewall on the computer running the ipython server must be
|
2014-11-18 21:56:29 +08:00
|
|
|
configured to allow connections from client machines on the ``c.NotebookApp.port``
|
|
|
|
port to allow connections to the web interface. The firewall must also allow
|
2014-11-19 00:22:46 +08:00
|
|
|
connections from 127.0.0.1 (localhost) on ports from 49152 to 65535.
|
|
|
|
These ports are used by the server to communicate with the notebook kernels.
|
|
|
|
The kernel communication ports are chosen randomly by ZeroMQ, and may require
|
|
|
|
multiple connections per kernel, so a large range of ports must be accessible.
|
2014-11-18 21:56:29 +08:00
|
|
|
|
2013-07-25 21:21:38 +08:00
|
|
|
Running with a different URL prefix
|
|
|
|
-----------------------------------
|
|
|
|
|
|
|
|
The notebook dashboard (the landing page with an overview
|
|
|
|
of the notebooks in your working directory) typically lives at the URL
|
|
|
|
``http://localhost:8888/``. If you prefer that it lives, together with the
|
|
|
|
rest of the notebook, under a sub-directory,
|
|
|
|
e.g. ``http://localhost:8888/ipython/``, you can do so with
|
|
|
|
configuration options like the following (see above for instructions about
|
2015-05-30 04:51:21 +08:00
|
|
|
modifying ``jupyter_notebook_config.py``)::
|
2013-07-25 21:21:38 +08:00
|
|
|
|
2014-02-12 13:19:55 +08:00
|
|
|
c.NotebookApp.base_url = '/ipython/'
|
2013-07-25 21:21:38 +08:00
|
|
|
c.NotebookApp.webapp_settings = {'static_url_prefix':'/ipython/static/'}
|
|
|
|
|
|
|
|
Known issues
|
|
|
|
------------
|
|
|
|
|
|
|
|
When behind a proxy, especially if your system or browser is set to autodetect
|
2013-08-08 16:17:05 +08:00
|
|
|
the proxy, the notebook web application might fail to connect to the server's
|
|
|
|
websockets, and present you with a warning at startup. In this case, you need
|
|
|
|
to configure your system not to use the proxy for the server's address.
|
2013-07-25 21:21:38 +08:00
|
|
|
|
|
|
|
For example, in Firefox, go to the Preferences panel, Advanced section,
|
|
|
|
Network tab, click 'Settings...', and add the address of the notebook server
|
|
|
|
to the 'No proxy for' field.
|