Skip to Content
Menu
This question has been flagged
2331 Views

Im trying to debug a module so Im trying to log into my database using navcat but something is off.

My etc/odoo/openerp-server.conf file says this:

and my config is:

but if I dont put a password in I get a response: no password supplied.

I've tried:

db:santiapps

user:odoo

pwd:12345

but I get password authentication failed for user "odoo"

Ive tried

db:santiapps

user:postgres

pwd:postgres

and

db:postgres

user:postgres

pwd:postgres

but I get the same user authentication fails.

I can log into 

db:santiapps

user:postgres

by psql and \d to see all the tables.

My postgresql.conf file has:
listen_addresses = '*'

And my pg_hba.conf file has:

# IPv4 local connections:

host all all 127.0.0.1/32 md5

host all all 0.0.0.0 0.0.0.0 md5

What am I doing wrong?

Avatar
Discard