ungleich-tools/ceph-mon-create-start

14 lines
261 B
Plaintext
Raw Normal View History

2018-02-15 22:08:24 +00:00
#!/bin/sh
if [ $# -ne 1 ]; then
echo "$0 initial-key-file"
exit 1
fi
fname=$1
ceph-mon --mkfs -i $(hostname) --keyring "$fname" --setuser ceph --setgroup ceph
touch /var/lib/ceph/mon/ceph-$(hostname)/sysvinit
2018-02-15 22:11:29 +00:00
/etc/init.d/ceph start mon.$(hostname)