debian11_install.md aktualisiert

This commit is contained in:
Peter Reichart 2023-10-31 14:24:34 +00:00
parent 7bc05cc20f
commit 68a7774926

View File

@ -37,3 +37,24 @@ apt update && apt upgrade -y && apt install apache2 libarchive-zip-perl libclon
chown -R www-data users spool webdav templates users chown -R www-data users spool webdav templates users
cp config/kivitendo.conf.default config/kivitendo.conf cp config/kivitendo.conf.default config/kivitendo.conf
``` ```
### PostgreSQL
* Datei: /etc/postgresql/13/main/postgresql.conf: DB hört auf allen Interfaces
```
listen_addresses = '*'
```
* Datei: /etc/postgresql/13/main/pg_hba.conf: Login für DB-User Kivitendo einrichten
```
local all kivitendo password
host all kivitendo 127.0.0.1/32 password
```
* psql Einstellungen:
```
su - postgres
pgsql
\password postgres
(Passwort für user postgres vergeben)
\q
```
* Datenbakuser anlegen:
```createuser -d -P kivitendo```