This question has been flagged
1 Reply
1682 Views

when I enter code: sudo apt-get install postgresql

result in ubuntu: password in odoo:

password?????????????

please help me..........

Avatar
Discard
Best Answer

Please check the installation guide for source install:

https://www.odoo.com/documentation/8.0/setup/install.html


It says:

PostgreSQL, to use a local database

After installation you will need to create a postgres user: by default the only user is postgres, and Odoo forbids connecting as postgres.

  • on Linux, use your distribution's package, then create a postgres user named like your login:

    $ sudo su - postgres -c "createuser -s $USER"
    

    Because the role login is the same as your unix login unix sockets can be use without a password.


Avatar
Discard