From 2cea3b69a96f5d30dbd693d740ebc4a45708c2e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20T=C3=B6rnqvist?= Date: Sat, 28 Mar 2015 18:10:35 +0200 Subject: [PATCH] Though I haven't run the server yet, I found these DB inits to be wrong --- Using-your-own-server.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Using-your-own-server.md b/Using-your-own-server.md index 25c7a28..167e850 100644 --- a/Using-your-own-server.md +++ b/Using-your-own-server.md @@ -18,5 +18,6 @@ Once the requirements are installed, continue with the following: 3. cp config/sample.yml local.yml 4. edit the local.yml with your details 5. compile server with `mvn package` -6. initialize database with `java -jar PATH-TO-JAR db migrate local.yml` -7. start server with `java -jar PATH-TO-JAR server local.yml` +6. initialize account database with `java -jar PATH-TO-JAR accountdb migrate local.yml` +7. initialize message store with `java -jar PATH-TO-JAR messagedb migrate local.yml` +8. start server with `java -jar PATH-TO-JAR server local.yml`