Skip to content

How to upgrade XPRESSO to v21.1

Perdita edited this page Feb 3, 2021 · 18 revisions

Steps to upgrade:

  1. git pull

    • You may have local changes to the following files or more:
      • docker-compose.yml
      • env/database.env
      • initializers/settings.yml
      • ...
    • make sure to git stash or git checkout those files and apply your changes after git pull.
  2. Create database for new Aggregator service - s3_aggregator

    • docker-compose exec database bash
    • mysql -u root -p
    • enter your root password
    • execute the following:
      CREATE DATABASE s3_aggregator;
      GRANT ALL PRIVILEGES ON `s3_aggregator`.* TO 'xpresso_admin'@'localhost'   WITH GRANT OPTION;
      GRANT ALL PRIVILEGES ON `s3_aggregator`.* TO 'xpresso_admin'@'192.168.66.%'   WITH GRANT OPTION;
      
Clone this wiki locally