# It appears as though the password does not need to be consistent when logging in with a dummy authenticator

**URL:** https://discourse.jupyter.org/t/it-appears-as-though-the-password-does-not-need-to-be-consistent-when-logging-in-with-a-dummy-authenticator/7813
**Category:** Zero to JupyterHub on Kubernetes
**Tags:** help-wanted
**Created:** [February 4, 2021, 11:59pm UTC](https://discourse.jupyter.org/t/it-appears-as-though-the-password-does-not-need-to-be-consistent-when-logging-in-with-a-dummy-authenticator/7813 "2021-02-04T23:59:40Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![hLance456](https://avatars.discourse-cdn.com/v4/letter/h/7ea924/32.png) [@hLance456](https://discourse.jupyter.org/u/hLance456)
#### Post date: [February 4, 2021, 11:59pm UTC](https://discourse.jupyter.org/t/it-appears-as-though-the-password-does-not-need-to-be-consistent-when-logging-in-with-a-dummy-authenticator/7813/1 "2021-02-04T23:59:40Z")

</div>

Hello, I have set up a JupyterHub instance on my kubernetes cluster that allows multiple users to log into their own accounts, however I have noticed that users do not need to enter the same password each time to log into their account. E.g., user Fred might start his account with the password “foo” but then will still be able to log in by providing the password “bar”.

I am currently using the Dummy authenticator class, and my `config.yaml` file has the following for authentication:

```auto
auth:
  type: dummy
  admin:
    access: true
    users:
      - admin

```

As far as I understand, according to the [dummy authenticator](https://jupyterhub.readthedocs.io/en/stable/reference/authenticators.html#the-dummy-authenticator), the user will need to provide the same password each time they log in. Am I missing something with respect to configuration, or is this expected behavior?

---

<div class="post-metadata">

### Author: ![manics](https://yyz1.discourse-cdn.com/flex031/user_avatar/discourse.jupyter.org/manics/32/85_2.png) [@manics](https://discourse.jupyter.org/u/manics)
#### Post date: [February 5, 2021, 9:25am UTC](https://discourse.jupyter.org/t/it-appears-as-though-the-password-does-not-need-to-be-consistent-when-logging-in-with-a-dummy-authenticator/7813/2 "2021-02-05T09:25:03Z")

</div>

> This allows for any username and password unless if a global password has been set. Once set, any username will still be accepted but the correct password will need to be provided.

It’s expected, `correct password` refers to the global password if set. If you’ve got suggestions for improving the wording please open a pull request 😃.

If you want persistent passwords  
[https://native-authenticator.readthedocs.io/en/latest/index.html](https://native-authenticator.readthedocs.io/en/latest/index.html)  
is worth looking at
