Advertisement
thanh_thu

shutdown/start

Sep 8th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. Follow the below procedure for Shutting down the Ceph Cluster:
  2. 1. Stop the clients from using the RBD images/Rados Gateway on this
  3. cluster or any other clients.
  4. 2. The cluster must be in healthy state before proceeding.
  5. 3. Set the noout, norecover, norebalance, nobackfill, nodown and pause flags
  6. #ceph osd set noout
  7. #ceph osd set norecover
  8. #ceph osd set norebalance
  9. #ceph osd set nobackfill
  10. #ceph osd set nodown
  11. #ceph osd set pause
  12. 4. Shutdown osd nodes one by one
  13. 5. Shutdown monitor nodes one by one
  14. 6. Shutdown admin node
  15.  
  16.  
  17. For Bringing up follow the below order:
  18. 1. Power on the admin node
  19. 2. Power on the monitor nodes
  20. 3. Power on the osd nodes
  21. 4. Wait for all the nodes to come up , Verify all the services are
  22. up and the connectivity is fine between the nodes.
  23. 5. Unset all the noout,norecover,noreblance, nobackfill, nodown and
  24. pause flags.
  25. #ceph osd unset noout
  26. #ceph osd unset norecover
  27. #ceph osd unset norebalance
  28. #ceph osd unset nobackfill
  29. #ceph osd unset nodown
  30. #ceph osd unset pause
  31. 6. Check and verify the cluster is in healthy state, Verify all the
  32. clients are able to access the cluster.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement