InstallScript icon indicating copy to clipboard operation
InstallScript copied to clipboard

Database creation error: Access Denied

Open anoopk350 opened this issue 3 years ago • 3 comments

Database creation error: Access Denied when try to create a database via ip:8069

anoopk350 avatar Mar 28 '22 10:03 anoopk350

I have the same error situation and would like to hear about a solution.

Ruediger-R avatar Nov 01 '22 20:11 Ruediger-R

On the database creation page, you should use the master password that you have set or that has been generated by install_odoo.sh

xdur avatar Feb 08 '23 10:02 xdur

Check the password carefully. If the error persists Verify that the role is created in postgres

$sudo -u postgres psql #\du

if not created

#CREATE USER odoo WITH PASSWORD 'your_password';

check that the role has CREATEDB permissions

If you don't have that permission

#ALTER USER odoo WITH CREATEDB;

ready

PREconsulting avatar Dec 29 '23 13:12 PREconsulting