martin
(usa Slackware)
Enviado em 23/02/2013 - 19:47h
Postgres 9.1.3
Centos 6.3
PHP 5.4.11
erro
Warning: pg_connect(): Unable to connect to PostgreSQL server: could not connect to server: Permission denied Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432? in /var/www/html/db.php
Pelo console OK
sudo -u postgres psql -U postgres -d postgres
Pelo PgAdim III de outra maquina ok
pg_hba.conf
host all all 0.0.0.0/0 trust
nmap ok para 5432
só o php não conecta!
<?php
$conexao = pg_connect("host=localhost port=5432 dbname=postgres user=postgres password= ") or die ("Não foi possivel conectar ao servidor MySQL");
//caso a conexão seja efetuada com sucesso, exibe uma mensagem ao usuario
echo "Conexão efetuada com sucesso!!";
?>
alguém consegue me ajudar?