blob: 47d782645e287ba7ebde263be810a63711aa0bfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
.. MediaGoblin Documentation
Written in 2020 by MediaGoblin contributors
To the extent possible under law, the author(s) have dedicated all
copyright and related and neighboring rights to this software to
the public domain worldwide. This software is distributed without
any warranty.
You should have received a copy of the CC0 Public Domain
Dedication along with this software. If not, see
<http://creativecommons.org/publicdomain/zero/1.0/>.
======================
Upgrading MediaGoblin
======================
Updating to a new release of MediaGoblin
----------------------------------------
Preparation
~~~~~~~~~~~
*ALWAYS* do backups before upgrading, especially before running migrations! That
way if something goes wrong, we can fix things!
And be sure to shut down your current MediaGoblin/Celery processes before
upgrading!
Upgrade (already on Python 3)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1. Update to the latest release. In your ``mediagoblin`` directory, run:
``git fetch && git checkout -q v0.10.0 && git submodule update``
2. Remove your existing installation:
``rm -rf bin include lib lib64 node_modules``
3. Install MediaGoblin:
``./bootstrap.sh && ./configure && make``
4. Update the database:
``./bin/gmg dbupdate``
5. Restart MediaGoblin
Upgrade (upgrading to Python 3)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1. Refer to the "Dependences" and "Configure PostgreSQL" sections of
":doc:`deploying`" to install the necessary Python 3 dependencies.
2. Update to the latest release. In your ``mediagoblin`` directory, run:
``git fetch && git checkout -q stable && git submodule update``
3. Remove your existing installation:
``rm -rf bin include lib lib64 node_modules``
4. Install MediaGoblin:
``./bootstrap.sh && ./configure && make``
5. Update the database:
``./bin/gmg dbupdate``
6. Restart MediaGoblin
Updating your system Python
---------------------------
Upgrading your operating system or installing a new version of
Python may break MediaGoblin. This typically occurs because Python virtual
environment is referring to a copy of Python that no longer exists. To fix this:
1. In your ``mediagoblin`` directory, remove your existing installation:
``rm -rf bin include lib lib64 node_modules``
2. Install MediaGoblin:
``./bootstrap.sh && ./configure && make``
3. Update the database:
``./bin/gmg dbupdate``
4. Restart MediaGoblin
|