Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 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 = cephx
  7. auth service required = cephx
  8. auth client required = cephx
  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 = {fs-type}
  28. #osd mkfs options {fs-type} = {mkfs options} # default for xfs is "-f"
  29. #osd mount options {fs-type} = {mount options} # 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 ceph-server with the name of your host.
  37. # For the monitor, replace 134.209.117.233 with the IP
  38. # address of your host.
  39.  
  40. [mon.a]
  41.  
  42. host = ceph-server
  43. mon addr = 134.209.117.233:6789
  44.  
  45. [osd.0]
  46. host = ceph-server
  47.  
  48. # For Bobtail (v 0.56) and subsequent versions, you may
  49. # add settings for mkcephfs so that it will create and mount
  50. # the file system on a particular OSD for you. Remove the comment `#`
  51. # character for the following setting for each OSD and specify
  52. # a path to the device if you use mkcephfs with the --mkfs option.
  53.  
  54. #devs = {path-to-device}
  55.  
  56. [osd.1]
  57. host = ceph-server
  58. #devs = {path-to-device}
  59.  
  60. [mds.a]
  61. host = ceph-server
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement