Upgrading Airnotifier: Difference between revisions
From MoodleDocs
David Mudrak (talk | contribs) m Text replacement - "<code>" to "<syntaxhighlight lang="php">" |
David Mudrak (talk | contribs) m Text replacement - "</code>" to "</syntaxhighlight>" |
||
| Line 5: | Line 5: | ||
ps aux | grep airnotifier | ps aux | grep airnotifier | ||
kill -9 PROCESS_ID | kill -9 PROCESS_ID | ||
</ | </syntaxhighlight> | ||
* Backup the MongoDB databases | * Backup the MongoDB databases | ||
*# Backup AirNotifier settings database <br/><syntaxhighlight lang="php">mongodump -h localhost --port 27017 -d airnotifier -o /var/airnotifier/</ | *# Backup AirNotifier settings database <br/><syntaxhighlight lang="php">mongodump -h localhost --port 27017 -d airnotifier -o /var/airnotifier/</syntaxhighlight> | ||
*# Backup each application data<br/><syntaxhighlight lang="php">mongodump -h localhost --port 27017 -d commoodlemoodlemobile -o /var/airnotifier/;</ | *# Backup each application data<br/><syntaxhighlight lang="php">mongodump -h localhost --port 27017 -d commoodlemoodlemobile -o /var/airnotifier/;</syntaxhighlight><br/><syntaxhighlight lang="php">mongodump -h localhost --port 27017 -d commoodlemoodlemobiletest -o /var/airnotifier/</syntaxhighlight> | ||
* Pull latest version from git | * Pull latest version from git | ||
| Line 15: | Line 15: | ||
cd /opt/airnotifier | cd /opt/airnotifier | ||
git pull | git pull | ||
</ | </syntaxhighlight> | ||
* Check that your current version has a version number in the options collection (AirNotifier settings database) (Older AirNotifier versions doesn't have it), use the shell: | * Check that your current version has a version number in the options collection (AirNotifier settings database) (Older AirNotifier versions doesn't have it), use the shell: | ||
Revision as of 20:26, 14 July 2021
Steps to upgrade
- Stop the server, killing the process
ps aux | grep airnotifier
kill -9 PROCESS_ID
- Backup the MongoDB databases
- Backup AirNotifier settings database
mongodump -h localhost --port 27017 -d airnotifier -o /var/airnotifier/
- Backup each application data
mongodump -h localhost --port 27017 -d commoodlemoodlemobile -o /var/airnotifier/;
mongodump -h localhost --port 27017 -d commoodlemoodlemobiletest -o /var/airnotifier/
- Backup AirNotifier settings database
- Pull latest version from git
cd /opt/airnotifier
git pull
- Check that your current version has a version number in the options collection (AirNotifier settings database) (Older AirNotifier versions doesn't have it), use the shell:
mongo use airnotifier db.options.find()
- If there is not a value option, create a new one:
db.options.insert({name: "version", value: 20140101})
- Run the upgrade.py script
cd /opt/airnotifier python upgrade.py
- Start the server again
./startserver
or
sudo -u airnotifier python airnotifier.py >> /var/airnotifier/console_log 2>> /var/airnotifier/error_log &