I have PostgreSQL 9.2 Installed in Windows 7 and I have windows XP installed in Virtual Machine, how do I connect these two databases and allow remote access to add/edit the
After set listen_addresses = '*' in postgresql.conf
listen_addresses = '*'
Edit the pg_hba.conf file and add the following entry at the very end of file:
host all all 0.0.0.0/0 md5 host all all ::/0 md5
For finding the config files this link might help you.