2019-11-17 18:11:33 +01:00
|
|
|
|
---
|
|
|
|
|
title: Upgrading to a new release
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# Preparing
|
|
|
|
|
|
|
|
|
|
The release page contains a changelog, and below it, upgrade instructions. **Read and understand** the release instructions.
|
|
|
|
|
|
|
|
|
|
Some tasks (like database migrations) can take a while, so we advise you to run commands inside a `tmux` or `screen`.
|
|
|
|
|
|
|
|
|
|
# Backup
|
|
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
|
Always make sure your database and `config` folder are properly backuped before performing upgrades.
|
2019-11-17 18:11:33 +01:00
|
|
|
|
|
|
|
|
|
Unless stated otherwise in the release notes, the following steps are enough to upgrade Mobilizon.
|
|
|
|
|
|
|
|
|
|
# Steps
|
|
|
|
|
|
|
|
|
|
### Fetch latest code
|
|
|
|
|
Switch to the `mobilizon` user:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
sudo -i -u mobilizon
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
And navigate to the Mobilizon root directory:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
cd /home/mobilizon/live
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Fetch the latest tags
|
|
|
|
|
```bash
|
|
|
|
|
git fetch --tags
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
And checkout the tag you want to switch to. For instance, if I want to upgrade to version `v1.1`:
|
|
|
|
|
```bash
|
|
|
|
|
git checkout v1.1
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Fetch new dependencies
|
|
|
|
|
Fetch new and/or updated Elixir and NodeJS dependencies
|
|
|
|
|
```bash
|
|
|
|
|
mix deps.get
|
|
|
|
|
```
|
|
|
|
|
```bash
|
|
|
|
|
cd js
|
|
|
|
|
yarn install
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Rebuild Mobilizon's front-end
|
|
|
|
|
```bash
|
|
|
|
|
yarn run build
|
|
|
|
|
cd ../
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Recompile Mobilizon
|
|
|
|
|
```bash
|
2020-01-30 20:27:25 +01:00
|
|
|
|
MIX_ENV=prod mix compile
|
2019-11-17 18:11:33 +01:00
|
|
|
|
```
|
|
|
|
|
Let's switch back to your regular user.
|
|
|
|
|
|
|
|
|
|
### Stop running Mobilizon processes
|
|
|
|
|
```bash
|
|
|
|
|
sudo systemctl stop mobilizon
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Perform database migrations
|
|
|
|
|
|
|
|
|
|
Go back to the `mobilizon` user.
|
|
|
|
|
```bash
|
|
|
|
|
sudo -i -u mobilizon
|
|
|
|
|
cd live
|
2020-01-30 20:27:25 +01:00
|
|
|
|
MIX_ENV=prod mix ecto.migrate
|
2019-11-17 18:11:33 +01:00
|
|
|
|
```
|
|
|
|
|
### Restart Mobilizon
|
|
|
|
|
Let's switch back one last time to your regular user.
|
|
|
|
|
```bash
|
|
|
|
|
sudo systemctl restart mobilizon
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
You can follow the Mobilizon logs to check that everything works properly.
|
|
|
|
|
```bash
|
|
|
|
|
sudo journalctl -u mobilizon -f
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**That’s all!** You’re running the new version of Mobilizon now.
|
|
|
|
|
|
|
|
|
|
If you have issues after upgrading, try reviewing upgrade steps and release notes.
|
|
|
|
|
Then feel free to [contact us](../about.md#discuss) or file an issue on [our Gitlab](https://framagit.org/framasoft/mobilizon/issues)
|