From d2784dacd842246662106dd40353979c1528d948 Mon Sep 17 00:00:00 2001 From: Sanjeev Bengeri Date: Sat, 21 Jan 2023 13:23:39 +0530 Subject: [PATCH] DB hostname comment for Ubuntu based installation If the DB hostname in the datacube_integration.conf file is set to localhost, the integration tests fail with the message that implies database connectivity issue. This is because for Ubuntu, postgres uses /var/run/postgresql folder. The fix was mentioned in this issue: https://github.com/opendatacube/datacube-core/issues/1329 --- docs/installation/setup/common_install.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/installation/setup/common_install.rst b/docs/installation/setup/common_install.rst index 917f2620cb..5e5966fd0d 100644 --- a/docs/installation/setup/common_install.rst +++ b/docs/installation/setup/common_install.rst @@ -92,6 +92,7 @@ Then edit the ``~/.datacube_integration.conf`` with a text editor and add the fo db_username: db_password: +Note: For Ubuntu Setup the db_hostname should be set to "/var/run/postgresql". For more refer: https://github.com/opendatacube/datacube-core/issues/1329 Verify it all works ===================