Advertisement
Guest User

Untitled

a guest
Sep 5th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.36 KB | None | 0 0
  1. ubuntu@admin-node:~$ ssh mon01 "cat /etc/ceph/ceph.conf"
  2. ceph@mon01's password:
  3. [global]
  4. fsid = 23641b5c-d141-4c0c-a074-3a4d0891108a
  5. mon_initial_members = mon01
  6. mon_host = 192.168.10.50
  7. auth_cluster_required = cephx
  8. auth_service_required = cephx
  9. auth_client_required = cephx
  10. public_network = 192.168.10.0/24
  11. cluster_network = 192.168.11.0/24
  12. mon_osd_full_ratio = .80
  13. mon_osd_nearfull_ratio = .70
  14.  
  15. [osd]
  16. filestore_xattr_use_omap = true
  17. osd_journal_size = 10000
  18. osd_pool_default_size = 2  # Write an object n times.
  19. osd_pool_default_min_size = 1 # Allow writing n copy in a degraded state.
  20. osd_pool_default_pg_num = 100
  21. osd_pool_default_pgp_num = 100
  22. osd_crush_chooseleaf_type = 1
  23.  
  24. [osd.0]
  25. osd_host = osd01
  26. public_addr = 192.168.10.51
  27. cluster_addr = 192.168.11.51
  28.  
  29. [osd.1]
  30. osd_host = osd02
  31. public_addr = 192.168.10.52
  32. cluster_addr = 192.168.11.52
  33.  
  34. [osd.2]
  35. osd_host = osd03
  36. public_addr = 192.168.10.53
  37. cluster_addr = 192.168.11.53
  38.  
  39. [mon]
  40.  
  41. [mon.a]
  42. host = mon01
  43. mon_addr = 192.168.10.50:6789
  44.  
  45. [mon.b]
  46. host = mon02
  47. mon_addr = 192.168.10.54:6789
  48.  
  49. [mds]
  50.  
  51. [client]
  52.  
  53. [client.admin]
  54. keyfile = admin.key
  55.  
  56. ubuntu@admin-node:~$ ssh mon02 "cat /etc/ceph/ceph.conf"
  57. ceph@mon02's password:
  58. [global]
  59.     fsid = 23641b5c-d141-4c0c-a074-3a4d0891108a
  60.     mon_initial_members = mon01
  61.     mon_host = 192.168.10.50
  62.  
  63.     auth_cluster_required = cephx
  64.     auth_service_required = cephx
  65.     auth_client_required = cephx
  66.    
  67.     public_network = 192.168.10.0/24
  68.     cluster_network = 192.168.11.0/24
  69.  
  70.         mon osd full ratio = .80
  71.         mon osd nearfull ratio = .70
  72.  
  73. [osd]
  74.     filestore xattr use omap = true
  75.     osd journal size = 10000
  76.     osd pool default size = 2  # Write an object n times.
  77.     osd pool default min size = 1 # Allow writing n copy in a degraded state.
  78.     osd pool default pg num = 100
  79.     osd pool default pgp num = 100
  80.     osd crush chooseleaf type = 1
  81.  
  82. [osd.0]
  83.     osd host = osd01
  84.         public addr = 192.168.10.51
  85.         cluster addr = 192.168.11.51
  86.  
  87. [osd.1]
  88.     osd host = osd02
  89.         public addr = 192.168.10.52
  90.         cluster addr = 192.168.11.52
  91.  
  92. [osd.2]
  93.     osd host = osd03
  94.         public addr = 192.168.10.53
  95.         cluster addr = 192.168.11.53
  96.  
  97.  
  98. [mon]
  99.  
  100. [mon.a]
  101.     host = mon01
  102.     mon addr = 192.168.10.50:6789
  103.  
  104. [mon.b]
  105.     host = mon02
  106.     mon addr = 192.168.10.54:6789
  107.  
  108. [mds]
  109.  
  110. [client]
  111.  
  112. [client.admin]
  113.     keyfile = admin.key
  114.  
  115. ubuntu@admin-node:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement