summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/start_cluster
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/src/tests/start_cluster')
-rwxr-xr-xqpid/cpp/src/tests/start_cluster19
1 files changed, 19 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/start_cluster b/qpid/cpp/src/tests/start_cluster
new file mode 100755
index 0000000000..03fb671bdf
--- /dev/null
+++ b/qpid/cpp/src/tests/start_cluster
@@ -0,0 +1,19 @@
+#!/bin/sh
+# Start a cluster of brokers on local host.
+# Print the cluster's URL.
+#
+
+test -f cluster.ports && { echo "cluster.ports file already exists" ; exit 1; }
+test -z "$*" && { echo "Usage: $0 cluster-size [options]"; exit 1; }
+
+rm -f cluster*.log cluster.ports
+SIZE=$1
+shift
+OPTS=$*
+CLUSTER=`whoami` # Cluster name=user name, avoid clashes.
+for (( i=0; i<SIZE; ++i )); do
+ PORT=`../qpidd --load-module ../.libs/libqpidcluster.so -dp0 --log-output=cluster$i.log --cluster-name $CLUSTER $OPTS` || exit 1
+ echo $PORT >> cluster.ports
+done
+
+