Ask a Question related to Ruby, Design and Development.

  1. #1

    Default postgres

    I'm trying to access a PostgreSQL database on my machine, however, I get
    the following error:

    irb(main):003:0> conn = PGconn.connect("localhost", 5432, "", "",
    "music")
    PGError: FATAL: IDENT authentication failed for user "kdresner"


    from (irb):3:in `connect'
    from (irb):3

    I created the database, so I should have the rights to access it...

    -Kurt

    Kurt M. Dresner Guest

  2. Similar Questions and Discussions

    1. BLOBS with PostGres
      CF7 and PostgreSQL 8 on separate boxes. I need to allow a user to upload a binary object and have CF insert it into a table on the DB server as a...
    2. Postgres 8 release
      When is the next release 8.00 will became stable or available? Bruno __________________________________________________________________________...
    3. php + postgres
      I've got this connection script for my database: <?php $password = md5("xxxxx"); $user = "user"; $host = "localhost"; $database = "base"; $link...
    4. [OT] postgres
      > I can connect through DBI, but not using the postgres module. Very Hm. Does your postgres startup command have a "-i" in it somewhere? Tom
    5. [OT] postgres
      > It doesn't appear to. ps aux | grep postgresql doesn't show anything You might try adding a "-i" to the "postmaster start" command. That'll...
  3. #2

    Default [OT] Re: postgres

    On Sat, Aug 16, 2003 at 11:34:58AM +0900, Kurt M. Dresner wrote:
    KMD> irb(main):003:0> conn = PGconn.connect("localhost", 5432, "", "",
    KMD> "music")
    KMD> PGError: FATAL: IDENT authentication failed for user "kdresner"
    <...>
    KMD> I created the database, so I should have the rights to access it..

    Not necessarily. What's in your pg_hba.conf and pg_ident.conf?

    Also, don't forget that connecting directly ('local' in pg_hba.conf) is
    not the same as connecting to localhost over TCP.

    --
    Dmitry Borodaenko

    Dmitry Borodaenko Guest

  4. #3

    Default Re: postgres

    Hi!

    Kurt M. Dresner wrote:
    > I'm trying to access a PostgreSQL database on my machine, however, I get
    > the following error:
    > irb(main):003:0> conn = PGconn.connect("localhost", 5432, "", "",
    > "music")
    > PGError: FATAL: IDENT authentication failed for user "kdresner"
    > from (irb):3:in `connect'
    > from (irb):3
    > I created the database, so I should have the rights to access it...
    Most of the times we are experiencing such problems the following
    stuffs were wrong.

    1) postgres needs to be startet with -i (for TCPIP access)

    2) pg_hba.conf has to include host 127.0.0.1 and preferable also the
    own IP address - for some reasons on some installations the postgres
    library connects to 127.0.0.1 with some eth0 interfaces IP address and
    then it didnt work unless this IP was also listed in pg_hba.conf.
    Haven't figured out yet why :-(

    3) createuser somebody

    You can also look into postgres[ql].log and check there for error
    messages.

    Regards
    Philipp Ott

    Philipp Ott Guest

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139