From 21ad40cf07e9237b772e19d19238aaf83e02a87a Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Mon, 13 Dec 2021 13:45:11 +0100 Subject: [PATCH] Docs: Postgres: explicitly set en_US.UTF-8 refs #136 --- doc/02-Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/02-Installation.md b/doc/02-Installation.md index 7abba5c5..5bfcddfa 100644 --- a/doc/02-Installation.md +++ b/doc/02-Installation.md @@ -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;' ```