trottel: PGAdmin kann nicht zu PostgreSQl-DB verbinden "password auth.."

Hallo

Ich bekomme bei PGADMIN3 immer ein "Failed: password authentication for user "xxx" failed"

Das Passwort ist aber richtig, unter SSH kann ich ich mich mit
su postgress
password

richtig einloggen.

Meine pg_hba.conf sieht so aus:

local all postgres ident
local all all md5
host all all 127.0.0.1/32 md5
host all all ::1/128 md5
host all all 0.0.0.0 0.0.0.0 md5
host all all 127.0.0.1 255.255.255.255 md5

Wie muss es richtig aussehen?
Habe die Doku schon studiert aber komme nicht weiter.

Liege Grüße vom Trottel

  1. Hallo,

    Das Passwort ist aber richtig, unter SSH kann ich ich mich mit
    su postgress
    password

    richtig einloggen.

    d.h. Du hast lokalen Zugriff. Das sagt nichts darüber aus, ob Du remote zugreifen kannst.

    Meine pg_hba.conf sieht so aus:

    [...]

    host all all 0.0.0.0 0.0.0.0 md5

    Zugriff sollte also von jedem Host aus möglich sein, wenn der Server entsprechend konfiguriert ist, ich zitiere aus der Doku:

    <zitat>
        Note:  Remote TCP/IP connections will not be possible unless the server is
        started with an appropriate value for the listen_addresses configuration
        parameter, since the default behavior is to listen for TCP/IP connections
        only on the local loopback address localhost.
    </zitat>

    Freundliche Grüße

    Vinzenz

    1. <zitat>
          Note:  Remote TCP/IP connections will not be possible unless the server is
          started with an appropriate value for the listen_addresses configuration
          parameter, since the default behavior is to listen for TCP/IP connections
          only on the local loopback address localhost.
      </zitat>

      Hallo Vinzenz,
      listen_adresses ist aber auf "*" gesetzt - so wie es auch richtig ist wenn man TCP/IP von allen möglichen Adressen akzeptieren möchte.

      Lg, der Trottel