firstuseauthenticator/README.md

56 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

# JupyterHub First Use Authenticator #
A [JupyterHub](https://jupyterhub.readthedocs.io) authenticator that helps new users set their password on their first login to JupyterHub.
2016-10-25 08:22:24 -07:00
**Are you running a workshop from a single physical location, such as a university seminar or a user group?**
JupyterHub First Use Authenticator can simplify the user set up for you. It's very useful when using transient
2016-10-25 08:22:24 -07:00
JupyterHub instances in a single physical location. It allows multiple users to log in, but you do not have install a pre-existing authentication setup. With this authenticator, users can just pick a username and password and get to work!
## Installation ##
You can install this authenticator with:
```bash
pip install jupyterhub-firstuseauthenticator
```
2016-10-25 08:22:24 -07:00
Once installed, configure JupyterHub to use it by adding the following to your `jupyterhub_config.py` file:
```python
c.JupyterHub.authenticator_class = 'firstuseauthenticator.FirstUseAuthenticator'
```
## Configuration ##
### FirstUseAuthenticator.dbm_path ###
2016-10-25 08:22:24 -07:00
Path to the [dbm](https://docs.python.org/3.5/library/dbm.html) file, or a UNIX database file such as `passwords.dbm`, used to store usernames and passwords. The dbm file should be put where regular users do not have read/write access to it.
2016-10-25 08:22:24 -07:00
This authenticator's default setting for the path to the `passwords.dbm` is the current directory from which JupyterHub is spawned.
### FirstUseAuthenticator.create_users ###
Create users if they do not exist already.
When set to False, users would have to be explicitly created before
they can log in. Users can be created via the admin panel or by setting
whitelist / admin list.
Defaults to True.
2018-08-27 18:37:20 -07:00
## FAQ ##
#### Why have a password DB and not use PAM ?
For security Reasons. Users are likely to set an, insecure password at
login time, and you do not want a brute-force/dictionary attack to manage to
login by attacking via ssh or another mean.
## Security
When using `FirstUseAuthenticator` it is advised to automatically prepend the
name of the user with a known-prefix (for example `jupyter`). This would prevent
for example, someone to log-in as `root`, as the created user would be
`jupyter-root`.