From: Hamatoma Date: Tue, 26 Aug 2025 07:34:31 +0000 (+0200) Subject: V0.1.5 Docu mysql X-Git-Url: https://gitweb.hamatoma.de/?a=commitdiff_plain;h=1489b494b3624edb8aaad16f748b04a249d97eb2;p=ansknife.git V0.1.5 Docu mysql - 71_mysql.md: setting of a password for root --- 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'); +```