aboutsummaryrefslogtreecommitdiff
path: root/doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FInstalling
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-08-03 18:27:49 +0000
committerRob Austein <sra@hactrn.net>2016-08-03 18:27:49 +0000
commit14a9628f0552d3818cd58fb085e7544cdbb3b5eb (patch)
tree2c6d9665ea9743e0a25d7726fb72fd54b2aa9323 /doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FInstalling
parentb322ea212b6b4c53af7cb4f24faac4302b181c9c (diff)
Dump of rpki.net Wiki, to capture content not linked into the manual.
Diffstat (limited to 'doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FInstalling')
-rw-r--r--doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FInstalling34
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FInstalling b/doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FInstalling
new file mode 100644
index 00000000..9a273d8f
--- /dev/null
+++ b/doc/wiki-dump/doc%2FRPKI%2FCA%2FUI%2FGUI%2FInstalling
@@ -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]]