Advertisement
Guest User

Untitled

a guest
Feb 12th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. ; Ceph conf file!
  2. ; use semi-colon to put a comment!
  3.  
  4. [global]
  5. auth supported = cephx
  6. keyring = /etc/ceph/keyring.admin
  7.  
  8. ; enable/disable the auth (disable by default)
  9. ;auth supported = none
  10. ;keyring = /etc/ceph/keyring.admin
  11. log file = /var/log/ceph/$name.log
  12.  
  13. [mds]
  14. keyring = /etc/ceph/keyring.$name
  15. [mds.0]
  16. host = ceph1
  17.  
  18. [osd]
  19. osd data = /srv/ceph/osd$id
  20. osd journal = /srv/ceph/osd$id/journal
  21. osd journal size = 2048
  22. osd class dir = /usr/lib/rados-classes
  23. keyring = /etc/ceph/keyring.$name
  24.  
  25. ;keyring = /etc/ceph/keyring.$name
  26.  
  27. ;working with ext4
  28. ;filestore xattr use omap = true
  29.  
  30. ;solve rbd data corruption, disable by default since 0.48 but good to remember
  31. filestore fiemap = false
  32.  
  33. ;run the journal on a tmpfs, disable direct I/O
  34. journal dio = false
  35.  
  36. ;debug filestore = 20
  37.  
  38. ; performance
  39. osd op threads = 24
  40. osd disk threads = 24
  41. filestore op threads = 6
  42. filestore queue max ops = 24
  43.  
  44. ; Y U NO DISABLE THIS OPTION BY DEFAULT?
  45. filestore_flusher = false
  46.  
  47. ;networking
  48. ;cluster network = 192.168.0.0/24
  49.  
  50. [osd.0]
  51. host = ceph1
  52. devs = /dev/sdb
  53. [mon]
  54. mon data = /srv/ceph/mon$id
  55. [mon.0]
  56. host = ceph1
  57. mon addr = 192.168.0.197:6789
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement