diff options
author | Arun Isaac | 2024-08-01 19:54:09 +0100 |
---|---|---|
committer | Arun Isaac | 2024-08-01 19:54:09 +0100 |
commit | 3a190bc9dee3b220b2b0e558b542d15e73ca562d (patch) | |
tree | 0da53e3323a1204e665d75d9e93a84cac2317378 | |
parent | 4db7a92b8b3ec438c7a03c1e14c635ba2194c975 (diff) | |
download | gn-gemtext-3a190bc9dee3b220b2b0e558b542d15e73ca562d.tar.gz |
Explain why a root password reset is necessary.
-rw-r--r-- | topics/database/setting-up-local-development-database.gmi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/topics/database/setting-up-local-development-database.gmi b/topics/database/setting-up-local-development-database.gmi index dea3675..9ebb48b 100644 --- a/topics/database/setting-up-local-development-database.gmi +++ b/topics/database/setting-up-local-development-database.gmi @@ -41,7 +41,7 @@ Setting up mariadb in a Guix container is the preferred and easier method. But, ``` $ sudo $(./containers/db-container.sh) ``` -Then, enter the container using guix container exec and set the root password to a blank. +By default, mariadb allows passwordless login for root only on the local machine. So, enter the container using guix container exec and set the root password to a blank. ``` $ mysql -u root MariaDB [(none)]> SET PASSWORD = PASSWORD(""); |