mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of https://github.com/arangodb/arangodb into devel
This commit is contained in:
commit
e0710c6fa3
|
@ -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.
|
||||
|
||||
|
|
|
@ -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 + ".");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue