]> git.proxmox.com Git - ceph.git/blame - ceph/doc/dev/vstart-ganesha.rst
update ceph source to reef 18.2.1
[ceph.git] / ceph / doc / dev / vstart-ganesha.rst
CommitLineData
a4b75251
TL
1==============================
2NFS CephFS-RGW Developer Guide
3==============================
4
5CephFS exports are supported since Octopus and RGW exports are supported since
6Quincy.
7
8Configuring NFS Ganesha to export CephFS with vstart
9====================================================
10
111) Using ``cephadm``
12
13 .. code:: bash
14
15 $ MDS=1 MON=1 OSD=3 NFS=1 ../src/vstart.sh -n -d --cephadm
16
17 This will deploy a single NFS Ganesha daemon using ``vstart.sh``, where the
18 daemon will listen on the default NFS Ganesha port. Also cephfs export is
19 created.
20
212) Using test orchestrator
22
23 .. code:: bash
24
25 $ MDS=1 MON=1 OSD=3 NFS=1 ../src/vstart.sh -n -d
26
27 Environment variable ``NFS`` is the number of NFS Ganesha daemons to be
28 deployed, each listening on a random port.
29
30 .. note:: NFS Ganesha packages must be pre-installed for this to work.
31
32Configuring NFS Ganesha to export RGW with vstart
33=================================================
34
351) Using ``cephadm``
36
37 .. code:: bash
38
39 $ MON=1 OSD=3 RGW=1 NFS=1 ../src/vstart.sh -n -d --cephadm
40
41 This will deploy a single NFS Ganesha daemon using ``vstart.sh``, where the
42 daemon will listen on the default NFS Ganesha port. Also rgw export is
43 created.
44
45 .. note:: boto python module must be pre-installed for this to work.