aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/29.RPKI.CA.UI.GUI.Installing.wiki
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-08-08 17:30:58 -0400
committerRob Austein <sra@hactrn.net>2016-08-08 17:30:58 -0400
commit1f75ecd9bc47c12a3c1596497dfaa621a2d16103 (patch)
treef52166c947154730db2723263bb3bdc845ad1249 /doc/manual/29.RPKI.CA.UI.GUI.Installing.wiki
parent7be7c02b6d2f1cec295ebacac49b01c75b6038a4 (diff)
Move old manual to doc/manual, to make it easier to find other documentation.
Diffstat (limited to 'doc/manual/29.RPKI.CA.UI.GUI.Installing.wiki')
-rw-r--r--doc/manual/29.RPKI.CA.UI.GUI.Installing.wiki34
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/manual/29.RPKI.CA.UI.GUI.Installing.wiki b/doc/manual/29.RPKI.CA.UI.GUI.Installing.wiki
new file mode 100644
index 00000000..9a273d8f
--- /dev/null
+++ b/doc/manual/29.RPKI.CA.UI.GUI.Installing.wiki
@@ -0,0 +1,34 @@
+[[TracNav(doc/RPKI/TOC)]]
+[[PageOutline]]
+
+= Installing the Web Portal for the First Time =
+
+This page documents how to install the web portal software. '''If you have previously installed the software''', see [[wiki:doc/RPKI/CA/UI/GUI/Upgrading]] for instructions.
+
+== Prerequisites ==
+
+This page assumes that you have already followed the steps to install the CA software (see [[wiki:doc/RPKI/Installation]])
+
+This page assumes that you have already created `/etc/rpki.conf` (see [[wiki:doc/RPKI/CA/Configuration]])
+
+== Create Database Tables ==
+
+This step creates the tables used by the web portal in the database. Run the following commands in the shell (you do not need to be ''root'', just have permission to read `/etc/rpki.conf`):
+
+{{{#!sh
+rpki-manage syncdb --noinput
+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`).
+
+== Next Step ==
+
+See [[wiki:doc/RPKI/CA/UI/GUI/Configuring]]