You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/test/cluster/start.sh

12 lines
353 B

#!/usr/bin/env bash
echo "Starting the core nodes"
../../src/proxysql -D $PWD/node01 -c confs/proxysql01.cfg
../../src/proxysql -D $PWD/node02 -c confs/proxysql02.cfg
../../src/proxysql -D $PWD/node03 -c confs/proxysql03.cfg
echo "Starting the satellite nodes"
for i in `seq 4 9` ; do
../../src/proxysql -D $PWD/node0$i -c confs/proxysql0$i.cfg
done