Advertisement
Guest User

Untitled

a guest
Oct 1st, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. [global]
  2. ; allow ourselves to open a lot of files
  3. max open files = 131072
  4.  
  5. ; set log file
  6. log file = /var/log/ceph/$name.log
  7. ; log_to_syslog = true ; uncomment this line to log to syslog
  8.  
  9. ; set up pid files
  10. pid file = /var/run/ceph/$name.pid
  11.  
  12. auth supported = cephx
  13. keyring = /etc/ceph/keyring.bin
  14.  
  15. [mon]
  16. mon data = /data/$name
  17.  
  18. [mon.0]
  19. host = ceph-mon0
  20. mon addr = 10.0.0.80:6789
  21.  
  22. [mds]
  23. keyring = /etc/ceph/keyring.$name
  24.  
  25. [mds.0]
  26. host = ceph-meta0
  27.  
  28. [osd]
  29. keyring = /etc/ceph/keyring.$name
  30. ; This is where the btrfs volume will be mounted.
  31. osd data = /data/$name
  32.  
  33. osd journal = /data/$name/journal
  34. osd journal size = 2000 ; journal size, in megabytes
  35.  
  36. [osd.0]
  37. host = ceph-data0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement