Enviado em 24/02/2013 - 01:00h
Segue o passo a passo.
CentOS release 6.3 (Final)
Kernel \r on an \m
Linux 2.6.32-279.22.1.el6.x86_64 x86_64
postgresql91-server-9.1.8-2PGDG.rhel6.x86_64
postgresql91-9.1.8-2PGDG.rhel6.x86_64
postgresql91-libs-9.1.8-2PGDG.rhel6.x86_64
(pid 2647) está em execução...
psql (9.1.8)
Digite "help" para ajuda.
postgres=# alter user postgres with encrypted password 'teste';
# IPv4 local connections:
host all all 127.0.0.1/32 ident
# IPv6 local connections:
host all all ::1/128 ident
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
psql (9.1.8)
Digite "help" para ajuda.
postgres=#
<?php
$conexao = pg_connect("host=localhost port=5432 dbname=postgres user=postgres password=teste") or die ("Não foi possivel conectar ao servidor POSTGRESQL");
//caso a conexão seja efetuada com sucesso, exibe uma mensagem ao usuario
echo "Conexão efetuada com sucesso!!";
?>
Conexão efetuada com sucesso!!