diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2021-01-20 11:29:36 +0100 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2021-01-20 11:32:34 +0100 |
commit | cc67a25886594e9009fa49418e106ea4ec40dd18 (patch) | |
tree | eb660dd298d065195683b990bcb34842edcf1233 /connectivity/README | |
parent | 234833f7823a1424b62c93e145f0cfe2c6b6efd5 (diff) |
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@allotropia.de>
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'connectivity/README')
-rw-r--r-- | connectivity/README | 20 |
1 files changed, 20 insertions, 0 deletions
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 |