Advertisement
Guest User

Untitled

a guest
May 22nd, 2013
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. service ceph -v -a start
  2. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "user"
  3. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "ssh path"
  4. === mon.a ===
  5. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "pid file"
  6. --- ssh mon1 "if [ ! -d / ]; then mkdir -p /; fi; cd / ; ulimit -c unlimited ; mkdir -p /var/run/ceph"
  7. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "log dir"
  8. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "auto start"
  9. --- ssh mon1 "if [ ! -d / ]; then mkdir -p /; fi; cd / ; ulimit -c unlimited ; [ -e /var/run/ceph/mon.a.pid ] || exit 1 # no pid, presumably not running
  10. pid=`cat /var/run/ceph/mon.a.pid`
  11. [ -e /proc/$pid ] && grep -q ceph-mon /proc/$pid/cmdline && grep -qwe -i.a /proc/$pid/cmdline && exit 0 # running
  12. exit 1 # pid is something else"
  13. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "copy executable to"
  14. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "lock file"
  15. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "admin socket"
  16. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "max open files"
  17. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "restart on core dump"
  18. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "valgrind"
  19. Starting Ceph mon.a on mon1...
  20. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "pre start eval"
  21. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "pre start command"
  22. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "post start command"
  23. --- ssh mon1 "if [ ! -d / ]; then mkdir -p /; fi; cd / ; ulimit -c unlimited ; ulimit -n 8192; /usr/bin/ceph-mon -i a --pid-file /var/run/ceph/mon.a.pid -c /etc/ceph/ceph.conf "
  24. /usr/bin/ceph-conf -c /etc/ceph/ceph.conf -n mon.a "mon data"
  25. Starting ceph-create-keys on mon1 ...
  26. --- ssh mon1 "if [ ! -d / ]; then mkdir -p /; fi; cd / ; ulimit -c unlimited ; /usr/sbin/ceph-create-keys -i a 2> /dev/null &"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement