diff options
author | Rob Austein <sra@hactrn.net> | 2016-08-04 12:27:06 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-08-04 12:27:06 -0400 |
commit | c897c7cecf4134f20354e3dbba9438cbab706eaf (patch) | |
tree | 7066ad608aa285a2b80589e224d06a96e7421120 /doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FUpgrading.md | |
parent | 949e9c8358b5259656c02e4a1ada7912d943afd2 (diff) |
Wiki->HTML->Markdown on all dumped pages, zip attachments.
Diffstat (limited to 'doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FUpgrading.md')
-rw-r--r-- | doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FUpgrading.md | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FUpgrading.md b/doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FUpgrading.md new file mode 100644 index 00000000..fb47c102 --- /dev/null +++ b/doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FUpgrading.md @@ -0,0 +1,52 @@ +# Upgrading from a Previous Version + + * See [wiki:doc/RPKI/CA/UI/GUI/Upgrading/BeforeMigration][1] for the special situation where you are upgrading from a release **prior to database migration support being added**. + +This page describes the steps you must take if you upgrading from a previous +version of the software that is already installed on the system. If you are +installing for the first time see [doc/RPKI/CA/UI/GUI/Installing][2]. + +Run the following commands at a shell prompt. Note that you do not need run +these as the _root_ user, any user with permission to read `/etc/rpki.conf` is +sufficient. + + + + rpki-manage syncdb + rpki-manage migrate + + +Note that at the end of the `syncdb` output you will see the following +message: + + + + Not synced (use migrations): + - rpki.gui.app + (use ./manage.py migrate to migrate these) + + +You should **ignore the message about running ./manage.py** since that script +does not exist in our setup (we use `rpki-manage` instead`). + +## Restart Apache + +In order to cause Apache to reload the web portal software using the newly +installed software, it must be restarted. Execute the following command as +_root_ in a shell: + + + + apachectl restart + + +## Next Step + +See [doc/RPKI/CA/UI/GUI/Configuring][3] + + [1]: #_.wiki.doc.RPKI.CA.UI.GUI.Upgrading.BeforeMigration + + [2]: #_.wiki.doc.RPKI.CA.UI.GUI.Installing + + [3]: #_.wiki.doc.RPKI.CA.UI.GUI.Configuring + |