-
Notifications
You must be signed in to change notification settings - Fork 13
How to upgrade XPRESSO to v21.1
Perdita edited this page Feb 3, 2021
·
18 revisions
Steps to upgrade:
-
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
orgit checkout
those files and apply your changes after git pull.
- You may have local changes to the following files or more:
-
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;