vault backup: 2025-12-10 11:37:35

This commit is contained in:
2023-05-15 17:16:05 +02:00
committed by Thomas Peetz
parent 91bf72fc87
commit 73f2162ddf
6049 changed files with 513094 additions and 227748 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;
```