I've got a postgres db running on a windows mc. I've set it up to accept remote connections. Can I use psql from another machine (*nix) to connect to it?
I've tried this:
but I get the error
which I don't understand.
The pg_hba.conf file is a configuration file residing on the host, isn't it? Why is the client asking for it?
I've tried this:
Code:
psql MYDB -U postgres -h 192.168.1.20
Code:
missing or erroneous pg_hba.conf file
The pg_hba.conf file is a configuration file residing on the host, isn't it? Why is the client asking for it?
Comment