[Libreoffice-commits] core.git: connectivity/README
Michael Stahl (via logerrit)
logerrit at kemper.freedesktop.org
Wed Jan 20 10:33:14 UTC 2021
connectivity/README | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
New commits:
commit cc67a25886594e9009fa49418e106ea4ec40dd18
Author: Michael Stahl <michael.stahl at allotropia.de>
AuthorDate: Wed Jan 20 11:29:36 2021 +0100
Commit: Michael Stahl <michael.stahl at allotropia.de>
CommitDate: Wed Jan 20 11:32:34 2021 +0100
connectivity: document how to test postgresql manually
Change-Id: I16f091b35a8246cb43842a6b864ba6061013ea7a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109695
Tested-by: Michael Stahl <michael.stahl at allotropia.de>
Reviewed-by: Michael Stahl <michael.stahl at allotropia.de>
diff --git a/connectivity/README b/connectivity/README
index ebae354523ca..40525a522227 100644
--- a/connectivity/README
+++ b/connectivity/README
@@ -2,6 +2,26 @@ Contains database pieces, drivers, etc.
[[dbaccess]] builds UI on top of this.
+=== PostgreSQL ===
+
+For testing, use:
+
+podman pull postgres:latest
+podman run --name=postgres -e POSTGRES_PASSWORD=foobarbaz -p 127.0.0.1:5432:5432 postgres:latest
+
+In Base, Connect to an existing database, select PostgreSQL:
+
+URL: host=127.0.0.1 port=5432 dbname=postgres
+User: postgres
+Password: foobarbaz
+
+podman stop postgres
+podman rm postgres
+
+In order to test SCRAM authentication, create the container like this:
+
+podman run --name=postgres -e POSTGRES_PASSWORD=foobarbaz -e POSTGRES_INITDB_ARGS=--auth-host=scram-sha-256 -e POSTGRES_HOST_AUTH_METHOD=scram-sha-256 -p 127.0.0.1:5432:5432 postgres:latest
+
=== mysql_test ===
- The CppunitTest_mysql_test unit test can be used to test the mysqlc
More information about the Libreoffice-commits
mailing list