ceph: add page (#3351)

italian
Ali Malek 2019-10-13 15:19:08 +03:30 committed by Starbeamrainbowlabs
parent 0d048d2074
commit fdbacd900d
1 changed files with 32 additions and 0 deletions

32
pages/linux/ceph.md Normal file
View File

@ -0,0 +1,32 @@
# ceph
> A unified storage system.
> More information: <https://ceph.io>.
- Check cluster health status:
`ceph status`
- Check cluster usage stats:
`ceph df`
- Get the statistics for the placement groups in a cluster:
`ceph pg dump --format {{plain}}`
- Create a storage pool:
`ceph osd pool create {{pool_name}} {{page_number}}`
- Delete a storage pool:
`ceph osd pool delete {{pool_name}}`
- Rename a storage pool:
`ceph osd pool rename {{current_name}} {{new_name}}`
- Self-repair pool storage:
`ceph pg repair {{pool_name}}`