1
0
Fork 0

Merge branch 'devel' of https://github.com/arangodb/arangodb into devel

This commit is contained in:
jsteemann 2016-06-24 10:53:12 +02:00
commit e0710c6fa3
2 changed files with 12 additions and 7 deletions

View File

@ -11,16 +11,17 @@ DC/OS is the recommended way to install a cluster as it eases much of the proces
DC/OS comes with its own package management. Packages can be installed from the so called "Universe". As an official DC/OS partner ArangoDB can be installed from there straight away.
1. Installing via DC/OS UI
1. Go to https://dcos.io and prepare a cluster
2. Open your browser and go to the DC/OS admin interface
3. Open the "Universe" tab
4. Locate arangodb and hit "Install Package"
5. Press "Install Package"
1. Go to https://dcos.io and prepare a cluster
2. Open your browser and go to the DC/OS admin interface
3. Open the "Universe" tab
4. Locate arangodb and hit "Install Package"
5. Press "Install Package"
2. Installing via the DC/OS command line
1. Install the [dcos cli](https://docs.mesosphere.com/usage/cli/)
2. Open a terminal and issue `dcos install arangodb`
1. Install the [dcos cli](https://docs.mesosphere.com/usage/cli/)
2. Open a terminal and issue `dcos install arangodb`
Both options are essentially doing the same in the background. Both are starting ArangoDB with its default options set.

View File

@ -22,6 +22,8 @@
success: function() {
window.modalView.hide();
self.reload();
console.log(result);
arangoHelper.arangoNotification("Services", "Service " + result.name + " installed.");
}
});
@ -194,6 +196,8 @@
} else {
this.collection.installFromStore({name: toInstall, version: version}, mount, installCallback.bind(this));
}
window.modalView.hide();
arangoHelper.arangoNotification("Services", "Installing " + toInstall + ".");
}
};