rails 3.2.2 (or 3.2.1) + Postgresql 9.1.3 + Ubuntu 11.10 Connection error

前端 未结 2 388
有刺的猬
有刺的猬 2021-02-02 04:25

I am using PostgreSQL 9.1.3 (PostgreSQL 9.1.3 on x86_64-pc-linux-gnu, compiled by gcc-4.6.real (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1, 64-bit) and rails either 3.2.2 or 3.2.1 on u

相关标签:
2条回答
  • 2021-02-02 04:45

    try this way,

    sudo -u postgres createuser -D -P your-current-ubuntu-username
    

    and

    sudo -u postgres createdb -O your-current-ubuntu-username your-database
    

    open up this file /etc/postgresql/9.1/main/pg_hba.conf

    change this line only:

    local   all             all                                     peer
    

    to this:

    local   all             all                                     md5
    

    Don't forget to restart the postgres server:

    sudo service postgresql restart
    

    Now check, with this command

    psql -d your-database -U your-current-ubuntu-username -W
    

    it should work

    This solutions works for postgresql-9.1, here is the way to install

    sudo apt-get install postgresql-9.1
    
    0 讨论(0)
  • 2021-02-02 04:58

    I'd like to propose a slightly different approach which utilizes the file socket instead.

    By allowing your Ubuntu user access to the database, everything should work without special connection parameters.

    In the Ubuntu command line:

    createuser -U postgres your-current-ubuntu-username

    see the Manpage of createuser for details.

    In your database.yml:

    development:
      adapter: postgresql
      encoding: unicode
      database: sample-app_development
      pool: 5
      username: your-current-ubuntu-username
      password:
    
    0 讨论(0)
提交回复
热议问题