Mysql: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 17: | Zeile 17: | ||
Wenn bei der Installation das Passwort nicht gesetzt wurde, kann das nachträglich passieren: | Wenn bei der Installation das Passwort nicht gesetzt wurde, kann das nachträglich passieren: | ||
<pre>update user set | <pre>update user set | ||
authentication_string=password(' | authentication_string=password('ge:heimesp_w1'), | ||
plugin='mysql_native_password' | plugin='mysql_native_password' | ||
where user='root'; | where user='root'; |
Version vom 29. August 2018, 08:55 Uhr
Debian Anpassungen
Debian prüft die Tabellen beim Booten. Damit das funktioniert, muss ein passender User eingerichtet sein:
- Siehe /etc/mysql/debian.cnf
mysql -u root -p mysql grant all on *.* to 'debian-sys-maint'@'localhost' identified by "6QLw8BSKFwzDnoUT"; grant all on *.* to 'dbadmin'@'192.168.2.%' identified by '6QLw8BSKFwzDnoUT'; grant SELECT on *.* to 'backup'@'localhost' identified by 'SAVE:alls!4711'; flush privileges;
MariaDB: Es ist für root ein Passwort vergeben. Man kann sich aber als OS-User root ohne Passwort anmelden.
Nachträglich Root-Passwort setzen
Wenn bei der Installation das Passwort nicht gesetzt wurde, kann das nachträglich passieren:
update user set authentication_string=password('ge:heimesp_w1'), plugin='mysql_native_password' where user='root';
Zugriff ohne Root-Passwort (als Benutzer root):
update user set authentication_string='', plugin='auth_socket' where user='root';
Datentypen
create table example( id INTEGER PRIMARY KEY NOT NULL AUTO_INCREMENT, ts TIMESTAMP, dt DATETIME, name VARCHAR(100) UNIQUE NOT NULL );