~ubuntu-branches/ubuntu/quantal/ceph/quantal

« back to all changes in this revision

Viewing changes to doc/config-cluster/demo-ceph.conf

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-07-16 09:56:24 UTC
  • mfrom: (0.3.11)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: package-import@ubuntu.com-20120716095624-azr2w4hbhei1rxmx
Tags: upstream-0.48
ImportĀ upstreamĀ versionĀ 0.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[global]
 
2
        ; use cephx or none
 
3
        auth supported = cephx
 
4
        keyring = /etc/ceph/keyring
 
5
 
 
6
[mon]
 
7
        mon data = /srv/mon.$id
 
8
        keyring = /etc/ceph/keyring.$name
 
9
 
 
10
[mds]
 
11
        keyring = /etc/ceph/keyring.$name
 
12
 
 
13
[osd]
 
14
        osd data = /srv/osd.$id
 
15
        osd journal = /srv/osd.$id.journal
 
16
        osd journal size = 1000
 
17
        ; uncomment the following line if you are mounting with ext4
 
18
        ; filestore xattr use omap = true
 
19
        keyring = /etc/ceph/keyring.$name
 
20
 
 
21
[mon.a]
 
22
        host = myserver01
 
23
        mon addr = 10.0.0.101:6789
 
24
 
 
25
[mon.b]
 
26
        host = myserver02
 
27
        mon addr = 10.0.0.102:6789
 
28
 
 
29
[mon.c]
 
30
        host = myserver03
 
31
        mon addr = 10.0.0.103:6789
 
32
 
 
33
[osd.0]
 
34
        host = myserver01
 
35
 
 
36
[osd.1]
 
37
        host = myserver02
 
38
 
 
39
[osd.2]
 
40
        host = myserver03
 
41
 
 
42
[mds.a]
 
43
        host = myserver01