[commits] [Wiki] changed: Doc/Dev/H6/Installation/SQL

Wiki Guest wikiguest at horde.org
Fri Nov 15 04:29:13 UTC 2024


guest [24.182.106.185]  Fri, 15 Nov 2024 04:29:13 +0000

Modified page: https://wiki.horde.org/Doc/Dev/H6/Installation/SQL
New Revision:  2
Change log:  Adding notes from creating Postgres database

@@ -38,9 +38,22 @@
  TBD - untested for H6 except some libraries

  ++ Postgresql

-TBD - untested for H6
+TBD - Needs confirmation for H6
+
+<code>
+#Create the database
+
+sudo -u postgres psql horde
+postgres=# CREATE USER horde;
+postgres=# ALTER USER horde with password 'your password';
+
+#starting with postgres 15+
+$ sudo -u postgres psql
+postgres=# \c horde
+postgres=# GRANT CREATE ON SCHEMA public TO horde;
+</code>

  ++ Oracle

  TBD - untested for H6



More information about the commits mailing list