You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I have a server connection configured that is set to "Show all databases", with the ssl property set to true.
When I try to expand into one of the databases, I receive an error saying there is no hba entry for the connection with "ssl: off".
If I update my connection to point to a specific database (instead of empty in the configuration JSON), I am able to open the database that failed to open in the previous step.
Can we have an update to make sure that SSL settings when "Show all databases" is being used is honored, or maybe am I doing something incorrectly?
Cheers! 😃
The text was updated successfully, but these errors were encountered:
There is no difference to the plugin in how it creates the connection to the database - the only thing different would be which database it's connecting to.
When you specify the database, that will be part of the connection string... for the show all, it still needs to connect to a database, so it connects to the default postgres database where it gets the list from.
The pg_hba.conf file can restrict based off of how, who, and what you are connecting to. So likely there is not an entry in there that allows you to connect to the postgres database itself.
Hi,
With this setting I can query all DBs on that instance, but whn I click on one of the DBs, I get "pg_hba.conf rejects connection for host "127.0.0.6", user "xxx", database "xxxxx", no encryption".
If I change "database": "" to "database": "XXXXX" then I can click in the sidebar.
It feels more like no connection config is applied, if you click an on a db (neither SSL nor hostname is correct.
Hello! I have a server connection configured that is set to "Show all databases", with the
ssl
property set totrue
.Can we have an update to make sure that SSL settings when "Show all databases" is being used is honored, or maybe am I doing something incorrectly?
Cheers! 😃
The text was updated successfully, but these errors were encountered: