From 39317e8d7d98b56dc00834dfd72ca5cf5a164459 Mon Sep 17 00:00:00 2001 From: Abhishek Lekshmanan Date: Fri, 18 Mar 2016 14:01:20 +0100 Subject: [PATCH] doc: very basic doc on mstart A very basic explanation of getting started with using mstart to deploy multiple clusters on a machine Signed-off-by: Abhishek Lekshmanan --- doc/dev/dev_cluster_deployement.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/doc/dev/dev_cluster_deployement.rst b/doc/dev/dev_cluster_deployement.rst index 4c64c4f7766..2dd232f09a3 100644 --- a/doc/dev/dev_cluster_deployement.rst +++ b/doc/dev/dev_cluster_deployement.rst @@ -100,3 +100,30 @@ Theses environment variables will contains the number of instances of the desire Example: :: OSD=3 MON=3 RGW=1 vstart.sh + + +============================================================ + Deploying multiple development clusters on the same machine +============================================================ + +In order to bring up multiple ceph clusters on the same machine, *mstart.sh* a +small wrapper around the above *vstart* can help. + +Usage +===== + +To start multiple clusters, you would run mstart for each cluster you would want +to deploy, and it will start monitors, rgws for each cluster on different ports +allowing you to run multiple mons, rgws etc. on the same cluster. Invoke it in +the following way:: + + mstart.sh + +For eg:: + + ./mstart.sh cluster1 -n -r + + +For stopping the cluster, you do:: + + ./mstop.sh -- 2.47.3