Advertisement
Guest User

Untitled

a guest
Mar 19th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. [global]
  2. auth supported = cephx
  3. debug ms = 1
  4. keyring = /etc/ceph/keyring.admin
  5.  
  6. [mon]
  7. mon data = /var/lib/ceph/mon/ceph-$id
  8. ;debug mon = 20
  9. ;debug paxos = 20
  10. ;debug auth = 20
  11.  
  12. [mon.a]
  13. host = ack-datastore-lnx001
  14. mon addr = 192.168.2.51:6789
  15.  
  16. [mds]
  17. debug mds = 20
  18. debug mds balancer = 20
  19. debug mds log = 20
  20. debug mds migrator = 20
  21.  
  22. [mds.a]
  23. host= ack-datastore-lnx001
  24.  
  25.  
  26. [osd]
  27. osd data = /var/lib/ceph/osd/ceph-$id
  28. ; working with ext4
  29. filestore xattr use omap = true ##SOLO PARA EXT4###
  30. ; solve rbd data corruption
  31. filestore fiemap = false ##SOLO PARA EXT4###
  32. osd journal = /var/lib/ceph/osd/ceph-$id/journal
  33. osd journal size = 15000
  34. keyring = /etc/ceph/keyring.$name
  35. cluster network = 192.168.200.0/24
  36. public network = 192.168.2.0/24
  37.  
  38. [osd.0]
  39. host = ack-datastore-lnx001
  40. cluster addr = 192.168.200.1
  41. public addr = 192.168.2.51:6802
  42. osd mkfs type = ext4
  43. devs = /dev/sdb1
  44.  
  45. [osd.1]
  46. host = ack-datastore-lnx001
  47. cluster addr = 192.168.200.1
  48. public addr = 192.168.2.51:6804
  49. osd mkfs type = ext4
  50. devs = /dev/sdc1
  51.  
  52.  
  53. [osd.5]
  54. host = ack-datastore-lnx002
  55. cluster addr = 192.168.200.2
  56. public addr = 192.168.2.52:6802
  57. osd mkfs type = ext4
  58. devs = /dev/sdb1
  59.  
  60. [osd.6]
  61. host = ack-datastore-lnx002
  62. cluster addr = 192.168.200.2
  63. public addr = 192.168.2.52:6804
  64. osd mkfs type = ext4
  65. devs = /dev/sdc1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement