Ready to Update Your Odoo Enterprise? Here’s Your Step by Step Guide!

Effortless Odoo Enterprise Updates: Pro Tips & Best Practices
November 12, 2024 by
Oliver Arnold

For those tackling Odoo Enterprise upgrades, here’s a step-by-step process that I’ve found effective—along with a few pro tips to streamline the experience!

Using the Web Form:

  1. Clean Your Database: Remove all unwanted modules and data.
  2. Run Odoo Enterprise Update Scripts online: https://upgrade.odoo.com/
  3. Install the Updated Database: Use the database manager to install the updated database
  4. Merge the Filestore: The updated zip does not include the files of the old filestore. Just copy them ( i love to use the midnight commander "mc" on the ubuntu command line for this )
  5. Extra Step for Docker: Most Odoo docker containers run as the Odoo user, so make sure the filestore ownership is properly configured!

Pro Tip / Scripting:

  1. Download the update script:                                             curl -s https://upgrade.odoo.com/upgrade
  2. Write a wrapper script to automate the update:    
    #!/bin/bash
    ./upgrade.py test -c MXXXXXXXXXXXXX -t 17.0 -i $1
  3. Run the update as described above!