{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Running the Notebook Server" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The IPython notebook server is a custom web server that runs the notebook web application. Most of the time, users run the notebook server on their local computer using IPython's command line interface." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Starting the notebook server using the command line" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can start the notebook server from the command line (Terminal on Mac/Linux, CMD prompt on Windows) by running the following command: \n", "\n", " jupyter notebook\n", "\n", "This will print some information about the notebook server in your terminal, including the URL of the web application (by default, `http://127.0.0.1:8888`). It will then open your default web browser to this URL.\n", "\n", "When the notebook opens, you will see the **notebook dashboard**, which will show a list of the notebooks and subdirectories in the directory where the notebook server was started. As of IPython 2.0, the dashboard allows you to navigate to different subdirectories. Because of this, it is no longer necessary to start a separate notebook server for each subdirectory. Most of the time, you will want to start a notebook server in the highest directory in your filesystem where notebooks can be found. Often this will be your home directory.\n", "\n", "You can start more than one notebook server at the same time. By default, the first notebook server starts on port 8888 and later notebook servers search for open ports near that one.\n", "\n", "You can also specify the port manually:\n", "\n", " jupyter notebook --port 9999\n", "\n", "Or start notebook server without opening a web browser.\n", "\n", " jupyer notebook --no-browser\n", "\n", "The notebook server has a number of other command line arguments that can be displayed with the `--help` flag: \n", "\n", " jupyer notebook --help\n", "\n", "We strongly recommend you run the notebook over https with a password, even on localhost and if you are the only user of the current machine as otherwise any other program on your machine could send commands to be run to your notebook server. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Configuring the Jupyter Notebook" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The notebook web server can also be configured using IPython profiles and configuration files. The Notebook web server configuration options are set in a file named `jupyter_notebook_config.py|json` in your Jupyter *config directory* which is usually `.jupyter` in your home directory.\n", "\n", "You can display the location of your default profile directory by running the command:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "/Users/bussonniermatthias/.jupyter\r\n" ] } ], "source": [ "!jupyter --config-dir" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## IPython configuration" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The notebook server configuration and the IPtyhon kernels configuration are separate. IPython has the noteion of profiles, and configuration files are often found in `~/.ipython`.\n", "\n", "More details about IPython configuration files and profiles can be found [here](http://ipython.org/ipython-doc/dev/config/intro.html)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Securing the notebook server" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The IPython Notebook allows arbitrary code execution on the computer running it. Thus, the notebook web server should never be run on the open internet without first securing it. By default, the notebook server only listens on local network interface (`127.0.0.1`) There are two steps required to secure the notebook server:\n", "\n", "1. Setting a password\n", "2. Encrypt network traffic using SSL" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Setting a password" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can protect your notebook server with a simple single password by setting the `NotebookApp.password` configurable. You can prepare a hashed password using the function `IPython.lib.passwd`:" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'sha1:6c2164fc2b22:ed55ecf07fc0f985ab46561483c0e888e8964ae6'" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from IPython.lib import passwd\n", "password = passwd(\"secret\")\n", "password" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can then add this to your `ipython_notebook_config.py`:\n", "\n", "```python\n", "# Password to use for web authentication\n", "c = get_config()\n", "c.NotebookApp.password = \n", "u'sha1:6c2164fc2b22:ed55ecf07fc0f985ab46561483c0e888e8964ae6'\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Using SSL/HTTPS" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "When using a password, it is a good idea to also use SSL, so that your \n", "password is not sent unencrypted by your browser to the web server. When running the notebook on the public internet this is absolutely required.\n", "\n", "The first step is to generate an SSL certificate. A self-signed certificate can be generated with ``openssl``. For example, the following command will create a certificate valid for 365 days with both the key and certificate data written to the same file:\n", "\n", " openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem\n", "\n", "In most cases, you should run this command in your profile directory, which will make it easy to use the generated key and certificate.\n", "\n", "When you connect to a notebook server over HTTPS using a self-signed certificate, your browser will warn you of a dangerous certificate because it is self-signed. If you want to have a fully compliant certificate that will not raise warnings, it is possible (but rather involved) to obtain one,\n", "as explained in detail in [this tutorial](http://arstechnica.com/security/news/2009/12/how-to-get-set-with-a-secure-sertificate-for-free.ars)\n", "\t\n", "When you enable SSL support, you will need to access the notebook server over ``https://``, rather than plain ``http://``. The startup message from the notebook server prints the correct URL, but it is easy to overlook and think the server is for some reason non-responsive.\n", "\n", "Once you have generated the key and certificate, you can configure the notebook server to use them, by adding the following to `ipython_notebook_config.py`:\n", "\n", "```python\n", "# The full path to an SSL/TLS certificate file.\n", "c.NotebookApp.certfile = u'/Users/bgranger/.ipython/profile_my_profile/mycert.crt'\n", "\n", "# The full path to a private key file for usage with SSL/TLS.\n", "c.NotebookApp.keyfile = u'/Users/bgranger/.ipython/profile_my_profile/mycert.key'\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Running a public notebook server" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "