Also ich versuche auf meine PostgreSQL-Datenbank zuzugreifen (ganz einfache Sache)
Code: Alles auswählen
#!/usr/bin/perl
use warnings;
use strict;
use DBI;
my $dbh = DBI->connect ("DBI:Pg:dbname=test1", "postgres", "wunderbar")
or die "Keine Verbindung mit der DB!\n";
Als Fehlermeldung bekomme ich folgendes:
Meine "/etc/postgresql/8.1/main/pg_hba.conf" sieht folgendermaßen aus:DBI connect('dbname=test2','postgres',...) failed: FATAL: Ident-Authentifizierung für Benutzer »postgres« fehlgeschlagen
at ./postgre_test_1.pl line 8
Keine Verbindung mit der DB!
Code: Alles auswählen
# Database administrative login by UNIX sockets
local all postgres ident sameuser
# TYPE DATABASE USER CIDR-ADDRESS METHOD
host all all
# "local" is for Unix domain socket connections only
local all all ident sameuser
# IPv4 local connections:
host all all 127.0.0.1 255.255.255.255 trust
# IPv6 local connections:
host all all ::1/128 md5
Vielen Dank vorab.
Gruss Christian[/quote]