Docs: Fix numbering in password reset FAQ

This commit is contained in:
Mike Salvatore 2021-10-13 13:35:39 -04:00
parent 65f5189eb1
commit 67a7fb66c5
1 changed files with 25 additions and 25 deletions

View File

@ -64,33 +64,33 @@ However, you can save the Monkey's existing configuration by logging in with you
In order to reset the credentials, the following edits need to be made: In order to reset the credentials, the following edits need to be made:
1. Delete the `user` field. It will look like this: 1. Delete the `user` field. It will look like this:
```json ```json
{ {
... ...
"user": "username", "user": "username",
... ...
} }
``` ```
1. Delete the `password_hash` field. It will look like this: 1. Delete the `password_hash` field. It will look like this:
```json ```json
{ {
... ...
"password_hash": "$2b$12$d050I/MsR5.F5E15Sm7EkunmmwMkUKaZE0P0tJXG.M9tF.Kmkd342", "password_hash": "$2b$12$d050I/MsR5.F5E15Sm7EkunmmwMkUKaZE0P0tJXG.M9tF.Kmkd342",
... ...
} }
``` ```
1. Set `server_config` to `password`. It should look like this: 1. Set `server_config` to `password`. It should look like this:
```json ```json
{ {
... ...
"environment": { "environment": {
... ...
"server_config": "password", "server_config": "password",
... ...
}, },
... ...
} }
``` ```
Then, reset the Monkey Island process. Then, reset the Monkey Island process.
On Linux, use `sudo systemctl restart monkey-island.service`. On Linux, use `sudo systemctl restart monkey-island.service`.
On Windows, restart the program. On Windows, restart the program.