Ho installato Postgres 8.4 su CentOS 6.4 64 bit per yum. Voglio gestire i database Postgres con phpPgAdmin-5.0.4-1 installato da yun (come MySQL e phpMyadmmin) Dopo l'installazione phpPgAdmin-5.0.4-1 Non riesco ad accedere a phpPgAdmin tramite l'accesso 192.168.7.4/phpPgAdmin/ (192.168. 7.4 è il mio CentOS server), si dice sempre "Accesso non riuscito" anche se sono sicuro che entro in nome utente (Postgres) e la password giusta Qui ci sono le mie informazioni, spero che tu possa aiutare:Come utilizzare phpPgAdmin con Postgres
netstat -tupln | grep postmaster
tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN 771/postmaster
tcp 0 0 :::5432 :::* LISTEN 771/postmaster
/etc/phpPgAdmin/config.inc.php
$conf['servers'][0]['desc'] = 'PostgreSQL';
$conf['servers'][0]['host'] = '192.168.7.4';
$conf['extra_login_security'] = false;
/var/lib/pgsql/data/postgresql.conf
listen_addresses = '*'
/var/lib/pgsql/data/pg_hba.conf
local all all ident
# IPv4 local connections:
host all all 127.0.0.1/32 ident
# IPv6 local connections:
host all all ::1/128 ident
Grazie in anticipo .
Grazie mille, sta funzionando ora. –