mirror of
https://github.com/ceph/ceph
synced 2024-12-21 10:54:42 +00:00
14 lines
171 B
Bash
14 lines
171 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
#check ceph health
|
||
|
ceph -s
|
||
|
#list pools
|
||
|
rados lspools
|
||
|
#lisr rbd images
|
||
|
rbd ls
|
||
|
#check that the monitors work
|
||
|
ceph osd set nodown
|
||
|
ceph osd unset nodown
|
||
|
|
||
|
exit 0
|