vault backup: 2026-01-27 16:34:57

This commit is contained in:
Thomas Peetz
2026-01-27 16:34:57 +01:00
parent 9d80b1a16c
commit c5a489ca29
48 changed files with 9294 additions and 42 deletions
+18
View File
@@ -0,0 +1,18 @@
## FAQ
### Access denied for user debian-sys-maint@localhost
Auf Ubuntu-Systemen kann der Systemuser für Mysql-Upgrades fehlen. Hier die Kommandos zum Einrichten:
```shell
sudo cat /etc/mysql/debian.cnf
sudo su -
sudo mysql
```
```sql
create user 'debian-sys-maint'@'localhost' IDENTIFIED BY '<password>';
grant all privileges on *.* to 'debian-sys-maint'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;
exit;
```