Advertisement
Guest User

Untitled

a guest
May 22nd, 2013
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. [global]
  2.  
  3. # For version 0.55 and beyond, you must explicitly enable
  4. # or disable authentication with "auth" entries in [global].
  5.  
  6. auth cluster required = none
  7. auth service required = none
  8. auth client required = none
  9.  
  10. [osd]
  11. osd journal size = 1000
  12.  
  13. #The following assumes ext4 filesystem.
  14. #filestore xattr use omap = true
  15.  
  16.  
  17. # For Bobtail (v 0.56) and subsequent versions, you may
  18. # add settings for mkcephfs so that it will create and mount
  19. # the file system on a particular OSD for you. Remove the comment `#`
  20. # character for the following settings and replace the values
  21. # in braces with appropriate values, or leave the following settings
  22. # commented out to accept the default values. You must specify the
  23. # --mkfs option with mkcephfs in order for the deployment script to
  24. # utilize the following settings, and you must define the 'devs'
  25. # option for each osd instance; see below.
  26.  
  27. osd mkfs type = xfs
  28. osd mkfs options xfs = "-f" # default for xfs is "-f"
  29. osd mount options xfs = "rw,noatime" # default mount option is "rw,noatime"
  30.  
  31. # For example, for ext4, the mount option might look like this:
  32.  
  33. #osd mkfs options ext4 = user_xattr,rw,noatime
  34.  
  35. # Execute $ hostname to retrieve the name of your host,
  36. # and replace {hostname} with the name of your host.
  37. # For the monitor, replace {ip-address} with the IP
  38. # address of your host.
  39.  
  40. [mon.a]
  41.  
  42. host = mon1
  43. mon addr = 172.xxx.xxx.xxx:6789
  44.  
  45. [mon.b]
  46.  
  47. host = mon2
  48. mon addr = 172.xxx.xxx.xxx:6789
  49.  
  50. [mon.c]
  51.  
  52. host = mon3
  53. mon addr = 172.xxx.xxx.xxx:6789
  54.  
  55.  
  56.  
  57. [osd.0]
  58. host = osd1
  59. devs = /dev/sdb
  60.  
  61.  
  62.  
  63. [client.radosgw.connect2]
  64. host = rgw2
  65. keyring = /etc/ceph/keyring.radosgw.connect2
  66. rgw socket path = /tmp/connect2.sock
  67. log file = /var/log/ceph/connect2.log
  68. rgw dns name = rgw2.domain.local
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement