Configuration

By default, Jupyter would not generate any default config. The following command would generate a default config file at /root/.jupyter/jupyter_notebook_config.py:

# To generate default config filejupyter notebook --generate-config# To set initial password instead of tokenjupyter notebook password# With out both password and token for testing purpose add --NotebookApp.token=''jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10 --no-browser --port 8082 --allow-root --ip=0.0.0.0 --NotebookApp.token=''

If you start Jupyter without a password, it creates a default token that can be used for the initial login. Then, it will prompt for password creation. But with the password command, it would prompt you to set an initial ...

Get Mastering Apache Cassandra 3.x - Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.