From 8e87be42ef5ac231734fdde27c535ef4163dd3b9 Mon Sep 17 00:00:00 2001 From: Alef Burzmali Date: Wed, 12 Jul 2023 23:05:35 +0200 Subject: [PATCH] Update the install doc for PostgreSQL 15 Fixes #12768 --- docs/installation/1-postgresql.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/installation/1-postgresql.md b/docs/installation/1-postgresql.md index 1fccd027084..f2e1ea35634 100644 --- a/docs/installation/1-postgresql.md +++ b/docs/installation/1-postgresql.md @@ -55,6 +55,9 @@ Within the shell, enter the following commands to create the database and user ( CREATE DATABASE netbox; CREATE USER netbox WITH PASSWORD 'J5brHrAXFLQSif0K'; ALTER DATABASE netbox OWNER TO netbox; +-- the next two commands are needed on PostgreSQL 15 and later +\connect netbox; +GRANT CREATE ON SCHEMA public TO netbox; ``` !!! danger "Use a strong password"