From cc67a25886594e9009fa49418e106ea4ec40dd18 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Wed, 20 Jan 2021 11:29:36 +0100 Subject: [PATCH] connectivity: document how to test postgresql manually Change-Id: I16f091b35a8246cb43842a6b864ba6061013ea7a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109695 Tested-by: Michael Stahl Reviewed-by: Michael Stahl --- connectivity/README | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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