Look through the info here firstly:
http://archives.postgresql.org/pgadmin-support/2007-02/msg00069.php
http://archives.postgresql.org/pgadmin-support/2007-02/msg00070.php
In configuration file of postgreSQl server pg_hba.conf you need to add IP-Address of PC you want to connect from (without password) with the following values:
TYPE | DATABASE | USER | CIDR-ADDRESS | METHOD | - |
host | all | all | 127.0.0.1/32 | trust | (for current machine) |
host | all | all | 127.0.0.1/24 | trust | (for all IPs within network) |
If you set up md5 method and not TRUST you need to specify password.
Comments
0 comments
Please sign in to leave a comment.