Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default password #232

Merged
merged 3 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws-code-build/ci/buildspec_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 0.2
env:
shell: bash
variables:
DEFAULT_PASSWORD: "ai-lab"
DEFAULT_PASSWORD: "ailab"
ASSET_ID: ""
AWS_USER_NAME: "release_user"
MAKE_AMI_PUBLIC_OPTION: "--no-make-ami-public"
Expand Down
2 changes: 1 addition & 1 deletion doc/user_guide/docker/docker-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ port to the same port then you can connect with http://localhost:49494.
│ │├─┘ ││├─┤ │ ├┤ └┬┘│ ││ │├┬┘ ││ │├─┘└┬┘ │ ├┤ ├┬┘ ├─┘├─┤└─┐└─┐││││ │├┬┘ ││ │
└─┘┴ ─┴┘┴ ┴ ┴ └─┘ ┴ └─┘└─┘┴└─ └┘└─┘┴ ┴ ┴ └─┘┴└─ ┴ ┴ ┴└─┘└─┘└┴┘└─┘┴└──┴┘ o

The default password is "ai-lab".
The default password is "ailab".
To update the password, log in to the Docker container as the user root and run
/root/jupyterenv/bin/jupyter-lab server password
```
Expand Down
2 changes: 1 addition & 1 deletion doc/user_guide/jupyter.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Root location
|---------------------|-------------------------------------------|
| Virtual environment | location `/$ROOT/jupyterenv` |
| Location notebooks | location `/$ROOT/notebooks` |
| Password | `ai-lab` |
| Password | `ailab` |
| HTTP Port | `49494` (or the port you forwarded it to) |

Exasol strongly recommends changing the Jupyter password as soon as possible. Details about how to do that will be shown in the login screen.
Expand Down
2 changes: 1 addition & 1 deletion doc/user_guide/login-vm-and-ami.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Username: **ubuntu**

At the first login to the AI-Lab (image or AMI) you will be prompted to change your password.
The default password is: **ai-lab**
The default password is: **ailab**

However, we suggest to use ssh-keys for the connection. When you use the AWS AMI, this will work automatically. When using the VM images, you need to deploy your ssh-keys. After you enabled ssh-keys, we recommend to disable ssh password authentication:
```shell
Expand Down
2 changes: 1 addition & 1 deletion exasol/ds/sandbox/runtime/ansible/general_setup_tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
command: "{{ jupyter_virtualenv }}/bin/jupyter-lab"
port: "49494"
user: "{{ user_name }}"
password: "{{ lookup('ansible.builtin.env', 'JUPYTER_LAB_PASSWORD', default='ai-lab') }}"
password: "{{ lookup('ansible.builtin.env', 'JUPYTER_LAB_PASSWORD', default='ailab') }}"
logfile: "{{ user_home }}/jupyter-server.log"
notebook_folder:
initial: "{{ initial_notebook_folder }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jupyterlab_default_url: "/lab/tree/start.ipynb"
# overridden in include_role
jupyterlab_virtualenv: "{{ user_home }}/jupyterenv"
jupyterlab_command: "{{ jupyterlab_virtualenv }}/bin/jupyter-lab"
jupyterlab_password: "{{ lookup('ansible.builtin.env', 'JUPYTER_LAB_PASSWORD', default='ai-lab') }}"
jupyterlab_password: "{{ lookup('ansible.builtin.env', 'JUPYTER_LAB_PASSWORD', default='ailab') }}"
jupyterlab_notebook_folder_initial: "{{ user_home }}/notebooks"
jupyterlab_notebook_folder: "{{ user_home }}/notebooks"

Expand Down
Loading