Unable to create a VirtualGraph with a PostgreSQL Server

Hi,

I used also with jdbc.username, but the error message was the same.

Since our Stardog server is running behind a Proxy, we solved the problem based on the following link:
https://community.stardog.com/t/stardog-connection-via-http-proxy/483/2 , via putting the following command into STARDOG_JAVA_ARGS:

STARDOG_JAVA_ARGS="-Xmx2g -Xms2g -XX:MaxDirectMemorySize=1g -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=53128"

Please note, in the original link there is a tiny misspell error, instead of "-Dhttp.protyPort=53128", it should be "-Dhttp.proxyPort=53128".

Running behind a proxy caused the problem of not correctly handing federated queries, as described in the following link: https://community.stardog.com/t/unable-to-run-federated-queries/1651 . Basically, both problems are solved using the above command. I interlinked these two problems in case some else encounters them in the future.

Thank you for your support.