Mysql: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 8: | Zeile 8: | ||
mysql -u root -p mysql | mysql -u root -p mysql | ||
grant all on *.* to 'debian-sys-maint'@'localhost' identified by "6QLw8BSKFwzDnoUT"; | grant all on *.* to 'debian-sys-maint'@'localhost' identified by "6QLw8BSKFwzDnoUT"; | ||
grant all on *.* to 'dbadmin'@'192.168.2.%' identified by '6QLw8BSKFwzDnoUT'; | |||
flush privileges; | |||
</pre> | </pre> |
Version vom 3. Mai 2017, 04:23 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'; flush privileges;