InstallScript
InstallScript copied to clipboard
Database creation error: Access Denied
Database creation error: Access Denied when try to create a database via ip:8069
I have the same error situation and would like to hear about a solution.
On the database creation page, you should use the master password that you have set or that has been generated by install_odoo.sh
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