diff options
Diffstat (limited to '')
-rwxr-xr-x | qa/mon/bootstrap/single_host_multi.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/qa/mon/bootstrap/single_host_multi.sh b/qa/mon/bootstrap/single_host_multi.sh new file mode 100755 index 00000000..864f3b17 --- /dev/null +++ b/qa/mon/bootstrap/single_host_multi.sh @@ -0,0 +1,39 @@ +#!/bin/sh -ex + +cwd=`pwd` +cat > conf <<EOF +[global] + +[mon] +admin socket = +log file = $cwd/\$name.log +debug mon = 20 +debug ms = 1 +mon host = 127.0.0.1:6789 127.0.0.1:6790 127.0.0.1:6791 +EOF + +rm -f mm +fsid=`uuidgen` + +rm -f keyring +ceph-authtool --create-keyring keyring --gen-key -n client.admin +ceph-authtool keyring --gen-key -n mon. + +ceph-mon -c conf -i a --mkfs --fsid $fsid --mon-data $cwd/mon.a -k keyring --public-addr 127.0.0.1:6789 +ceph-mon -c conf -i b --mkfs --fsid $fsid --mon-data $cwd/mon.b -k keyring --public-addr 127.0.0.1:6790 +ceph-mon -c conf -i c --mkfs --fsid $fsid --mon-data $cwd/mon.c -k keyring --public-addr 127.0.0.1:6791 + +ceph-mon -c conf -i a --mon-data $cwd/mon.a +ceph-mon -c conf -i b --mon-data $cwd/mon.b +ceph-mon -c conf -i c --mon-data $cwd/mon.c + +ceph -c conf -k keyring health -m 127.0.0.1 +while true; do + if ceph -c conf -k keyring -m 127.0.0.1 mon stat | grep 'a,b,c'; then + break + fi + sleep 1 +done + +killall ceph-mon +echo OK
\ No newline at end of file |