minhng92 / odoo-17-docker-compose

Set up Odoo 17 (released 2023) quickly for development/production using Docker Compose.
113 stars 144 forks source link

Permission issues #1

Closed warci closed 11 months ago

warci commented 11 months ago

Hi, I'm running on OSX Sonoma. When trying to initialize the database I receive: Database creation error: Access Denied

I have performed the permission modifications as mentioned in the readme. The docker logs don't seem to mention anything relevant.

Thanks for providing this awesome docker-compose setup!

odoo_docker.log

minhng92 commented 11 months ago

Hi @warci ,

In your odoo_docker.log I can see that your database has started successfully. The issue may be incorrect "Master password". The password to create new database on Odoo form is "admin_passwd" in odoo.conf.

Please try again with the following step:

  1. Change admin_passwd in etc/odoo.conf to XXX (your favorite one)
  2. Restart Odoo container docker-compose restart
  3. Initialize the database again with the password XXX you have set.

Hope that it helps.

warci commented 11 months ago

Can't believe I missed this. Thank you so much and my apologies for asking dumb questions :)