summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/start_cluster
blob: 03fb671bdf422ca2e105b139ef3f5e904df8e17d (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; }

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