Advertisement
Guest User

Untitled

a guest
Jan 29th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 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"
  29. #{mkfs options} # default for xfs is "-f"
  30. osd mount options xfs = "rw,noatime"
  31. #{mount options} # default mount option is "rw, noatime"
  32.  
  33. # Execute $ hostname to retrieve the name of your host,
  34. # and replace {hostname} with the name of your host.
  35. # For the monitor, replace {ip-address} with the IP
  36. # address of your host.
  37.  
  38. [mon.a]
  39.  
  40. host = sg3cephtstko1
  41. mon addr = ip:6789
  42.  
  43. [osd.0]
  44. host = sg3cephtstko1
  45.  
  46. # For Bobtail (v 0.56) and subsequent versions, you may
  47. # add settings for mkcephfs so that it will create and mount
  48. # the file system on a particular OSD for you. Remove the comment `#`
  49. # character for the following setting for each OSD and specify
  50. # a path to the device if you use mkcephfs with the --mkfs option.
  51.  
  52. devs = /dev/sdb
  53.  
  54. [mds.a]
  55. host = sg3cephtstko1
  56.  
  57. [client.radosgw.gateway]
  58. host = sg3cephtstko1.domain.ag
  59. rgw dns name= sg3cephtstko1.domain.ag
  60. keyring = /etc/ceph/keyring.radosgw.gateway
  61. rgw socket path = /tmp/radosgw.sock
  62. log file = /var/log/ceph/radosgw.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement