Docs: Postgres: explicitly set en_US.UTF-8

refs #136
This commit is contained in:
Alexander A. Klimov 2021-12-13 13:45:11 +01:00
parent 2cf4529cc0
commit 21ad40cf07

View file

@ -171,7 +171,7 @@ Set up a PostgreSQL database for Icinga DB:
# su -l postgres
createuser -P icingadb
createdb -E UTF8 -O icingadb icingadb
createdb -E UTF8 --locale en_US.UTF-8 -T template0 -O icingadb icingadb
psql icingadb <<<'CREATE EXTENSION IF NOT EXISTS citext;'
```