summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/start_cluster
blob: c2806bb225ddfbd662af053bd202ccc2e65a8cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }

SIZE=$1
shift
OPTS=$*

for (( i=0; i<SIZE; ++i )); do
    PORT=`../qpidd -dp0 --log.output=broker$i.log $OPTS` || exit 1
    PORTS="$PORT $PORTS"
done
echo $PORTS > cluster.ports