]> gitweb.hamatoma.de Git - ansknife.git/commitdiff
V0.1.5 Docu mysql
authorHamatoma <author@hamatoma.de>
Tue, 26 Aug 2025 07:34:31 +0000 (09:34 +0200)
committerHamatoma <author@hamatoma.de>
Tue, 26 Aug 2025 07:34:31 +0000 (09:34 +0200)
- 71_mysql.md: setting of a password for root

CHANGELOG.md
docu/de/71_mysql.md

index 835ff224e4b1df6210576e5f39f2ccfacace0a17..7ab4c0b3c7021c3cda883c5a2f478fe5d2ec8450 100644 (file)
@@ -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
index 349efea3f42d271c6f92839ce95e7b0cbee12882..2327f7ea722a9663de4cc60b3973fe0f0c9f62cb 100644 (file)
@@ -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');
+```