mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 15:26:04 +02:00
ceph: add page (#3351)
This commit is contained in:
parent
0d048d2074
commit
fdbacd900d
1 changed files with 32 additions and 0 deletions
32
pages/linux/ceph.md
Normal file
32
pages/linux/ceph.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue