summaryrefslogtreecommitdiff
path: root/cpp/src/tests/cluster_test_scripts/config_example.sh
blob: fd5b800df7a79e4a992f78f22386b7176f7722b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Cluster configuration.

# All output stored under $HOME/$CLUSTER_HOME.
CLUSTER_HOME=$HOME/cluster_test

# Hosts where brokers will be run. Repeat hostname to run multiple brokers on 1 host.
BROKER_HOSTS="mrg22 mrg23 mrg24 mrg25 mrg26"

# Hosts where clients will be run.
CLIENT_HOSTS="$BROKER_HOSTS"

# Paths to executables
QPIDD=qpidd
PERFTEST=perftest

# Directory containing tests
TESTDIR=/usr/bin

# Options for qpidd, must be sufficient to load the cluster plugin.
# Scripts will add --cluster-name, --daemon, --port and --log-to-file options here.
QPIDD_OPTS=" \
--auth=no \
--log-enable=notice+ \
--log-enable=debug+:cluster \
"