I am having problems setting up phpPgAdmin to access and administer a new postgres database server.
I have set up postgres, and installed a database called
mydb on it. I have also set up an additional user,
dan to the standard
postgres user.
I have also installed phpPgAdmin and can access the login page. However neither user can log in, getting "login failed" messages.
At the moment I am not worried about the security of the service - I want to get it working, then lock down as I go...
My
pg_hba.conf is as follows:
Code:
local all all trust
host all all 127.0.0.1 255.255.255.255 trust
My [I]config_inc_php.conf[/I(} is set up like:
Code:
$conf['servers'][0]['desc'] = 'PostgreSQL';
$conf['servers'][0]['host'] = '127.0.0.1';
$conf['servers'][0]['port'] = 5432;
$conf['servers'][0]['defaultdb'] = 'template1';
and then as standard.
Any help???
Trying to access from local at the moment.
Dan