From 1489b494b3624edb8aaad16f748b04a249d97eb2 Mon Sep 17 00:00:00 2001 From: Hamatoma Date: Tue, 26 Aug 2025 09:34:31 +0200 Subject: [PATCH] V0.1.5 Docu mysql - 71_mysql.md: setting of a password for root --- CHANGELOG.md | 6 ++++++ docu/de/71_mysql.md | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 835ff22..7ab4c0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# V0.1.5 Docu mysql + +- 71_mysql.md: setting of a password for root + + + # V0.1.4 rocketchat - new:deno_install.yaml diff --git a/docu/de/71_mysql.md b/docu/de/71_mysql.md index 349efea..2327f7e 100644 --- a/docu/de/71_mysql.md +++ b/docu/de/71_mysql.md @@ -24,3 +24,8 @@ FLUSH PRIVILEGES; select host, user from user; show grants for 'dba'@'localhost'; ``` + +# Einstellen eines Passworts für Benutzer root +``` +ALTER USER 'root'@'localhost' IDENTIFIED VIA mysql_native_password USING PASSWORD('MeinKleinesGeheimnis'); +``` -- 2.47.2