debian11_install.md aktualisiert
This commit is contained in:
parent
7bc05cc20f
commit
68a7774926
@ -36,4 +36,25 @@ apt update && apt upgrade -y && apt install apache2 libarchive-zip-perl libclon
|
|||||||
mkdir webdav
|
mkdir webdav
|
||||||
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```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user