Kapitel 7/Tutorial.md aktualisiert

This commit is contained in:
2025-09-04 07:13:48 +00:00
parent 4aa0243c86
commit 2e2819eb30

View File

@@ -89,13 +89,21 @@ chown -R www-data:www-data nextcloud
```bash
su - postgres
psql
```
Dann in der PostgreSQL-Konsole:
```sql
CREATE DATABASE nextcloud;
CREATE USER nextcloud WITH PASSWORD 'DEIN_SICHERES_PASSWORT';
GRANT ALL PRIVILEGES ON DATABASE nextcloud TO nextcloud;
\q
```
Zurück zur Shell:
```bash
exit
```