]> git.proxmox.com Git - ceph.git/blob - ceph/doc/start/ceph.conf
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / doc / start / ceph.conf
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 # For ceph-deploy, you can control what type of file system
14 # is created via these options.
15
16 #osd mkfs type = {fs-type}
17 #osd mkfs options {fs-type} = {mkfs options} # default for xfs is "-f"
18 #osd mount options {fs-type} = {mount options} # default mount option is "rw,noatime"
19
20 # For example, for xfs, the mount option might look like this:
21
22 #osd mkfs options xfs = inode64,rw,noatime
23
24 # Execute $ hostname to retrieve the name of your host,
25 # and replace {hostname} with the name of your host.
26 # For the monitor, replace {ip-address} with the IP
27 # address of your host.
28
29 [mon.a]
30
31 host = {hostname}
32 mon addr = {ip-address}:6789
33
34 [osd.0]
35 host = {hostname}
36
37 [osd.1]
38 host = {hostname}
39
40 [mds.a]
41 host = {hostname}