Advertisement
42n4

proxmox_ceph_conf

Jun 27th, 2016
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.96 KB | None | 0 0
  1. [global]
  2.      auth client required = cephx
  3.      auth cluster required = cephx
  4.      auth service required = cephx
  5.      cluster network = 10.10.10.0/24
  6.      debug asok = 0/0
  7.      debug auth = 0/0
  8.      debug bluestore = 0/0
  9.      debug buffer = 0/0
  10.      debug client = 0/0
  11.      debug context = 0/0
  12.      debug crush = 0/0
  13.      debug filer = 0/0
  14.      debug filestore = 0/0
  15.      debug finisher = 0/0
  16.      debug hadoop = 0/0
  17.      debug heartbeatmap = 0/0
  18.      debug journal = 0/0
  19.      debug journaler = 0/0
  20.      debug lockdep = 0/0
  21.      debug log = 0
  22.      debug mds = 0/0
  23.      debug mds_balancer = 0/0
  24.      debug mds_locker = 0/0
  25.      debug mds_log = 0/0
  26.      debug mds_log_expire = 0/0
  27.      debug mds_migrator = 0/0
  28.      debug mon = 0/0
  29.      debug monc = 0/0
  30.      debug ms = 0/0
  31.      debug objclass = 0/0
  32.      debug objectcacher = 0/0
  33.      debug objecter = 0/0
  34.      debug optracker = 0/0
  35.      debug osd = 0/0
  36.      debug paxos = 0/0
  37.      debug perfcounter = 0/0
  38.      debug rados = 0/0
  39.      debug rbd = 0/0
  40.      debug rgw = 0/0
  41.      debug throttle = 0/0
  42.      debug timer = 0/0
  43.      debug tp = 0/0
  44.      filestore xattr use omap = true
  45.      fsid = 2a3bfe07-9de5-4317-a8e9-9e616ec86ee7
  46.      keyring = /etc/pve/priv/$cluster.$name.keyring
  47.      mon_pg_warn_max_per_osd = 0
  48.      osd crush chooseleaf type = 2
  49.      osd journal size = 5120
  50.      osd pool default min size = 1
  51.      public network = 192.168.10.0/24
  52.  
  53. [client]
  54.      rbd cache = true
  55.      rbd cache max dirty = 134217728
  56.      rbd cache max dirty age = 5
  57.      rbd cache size = 268435456
  58.  
  59. [osd]
  60.      filestore max sync interval = 100
  61.      filestore min sync interval = 50
  62.      filestore queue committing max bytes = 536870912
  63.      filestore queue committing max ops = 2000
  64.      filestore queue max bytes = 536870912
  65.      filestore queue max ops = 2000
  66.      filestore xattr use omap = true
  67.      journal max write bytes = 1073714824
  68.      journal max write entries = 10000
  69.      journal queue max bytes = 10485760000
  70.      journal queue max ops = 50000
  71.      keyring = /var/lib/ceph/osd/ceph-$id/keyring
  72.      osd client message size cap = 2147483648
  73.      osd data = /var/lib/ceph/osd/ceph-$id
  74.      osd deep scrub stride = 131072
  75.      osd disk threads = 4
  76.      osd journal size = 20000
  77.      osd map cache bl size = 128
  78.      osd map cache size = 1024
  79.      osd max backfills = 1
  80.      osd max write size = 512
  81.      osd mkfs options xfs = "-f  -i size=2048"
  82.      osd mkfs type = xfs
  83.      osd mount options xfs = "rw,noatime,nodiratime,nobarrier,logbsize=256k,logbufs=8,inode64,allocsize=4M"
  84.      osd op threads = 8
  85.      osd recovery max active = 1
  86.      osd recovery op priority = 4
  87.  
  88. [mon.0]
  89.      host = osd1
  90.      mon addr = 10.10.10.11:6789
  91.  
  92. [mon.1]
  93.      host = osd2
  94.      mon addr = 10.10.10.12:6789
  95.  
  96. [mon.2]
  97.      host = osd3
  98.      mon addr = 10.10.10.13:6789
  99.  
  100. [mon.3]
  101.      host = osd4
  102.      mon addr = 10.10.10.14:6789
  103.  
  104. [osd.0]
  105.      cluster addr = 10.10.10.11
  106.      host = osd1
  107.      public addr = 192.168.10.53
  108.  
  109. [osd.1]
  110.      cluster addr = 10.10.10.12
  111.      host = osd2
  112.      public addr = 192.168.10.54
  113.  
  114. [osd.2]
  115.      cluster addr = 10.10.10.13
  116.      host = osd3
  117.      public addr = 192.168.10.56
  118.  
  119. [osd.3]
  120.      cluster addr = 10.10.10.14
  121.      host = osd4
  122.      public addr = 192.168.10.58
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement