summaryrefslogtreecommitdiffstats
path: root/src/ceph/doc/cephfs/fstab.rst
diff options
context:
space:
mode:
authorQiaowei Ren <qiaowei.ren@intel.com>2018-03-01 14:38:11 +0800
committerQiaowei Ren <qiaowei.ren@intel.com>2018-03-01 14:38:11 +0800
commit7da45d65be36d36b880cc55c5036e96c24b53f00 (patch)
treed4f944eb4f8f8de50a9a7584ffa408dc3a3185b2 /src/ceph/doc/cephfs/fstab.rst
parent691462d09d0987b47e112d6ee8740375df3c51b2 (diff)
remove ceph code
This patch removes initial ceph code, due to license issue. Change-Id: I092d44f601cdf34aed92300fe13214925563081c Signed-off-by: Qiaowei Ren <qiaowei.ren@intel.com>
Diffstat (limited to 'src/ceph/doc/cephfs/fstab.rst')
-rw-r--r--src/ceph/doc/cephfs/fstab.rst46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/ceph/doc/cephfs/fstab.rst b/src/ceph/doc/cephfs/fstab.rst
deleted file mode 100644
index dc38715..0000000
--- a/src/ceph/doc/cephfs/fstab.rst
+++ /dev/null
@@ -1,46 +0,0 @@
-==========================================
- Mount Ceph FS in your File Systems Table
-==========================================
-
-If you mount Ceph FS in your file systems table, the Ceph file system will mount
-automatically on startup.
-
-Kernel Driver
-=============
-
-To mount Ceph FS in your file systems table as a kernel driver, add the
-following to ``/etc/fstab``::
-
- {ipaddress}:{port}:/ {mount}/{mountpoint} {filesystem-name} [name=username,secret=secretkey|secretfile=/path/to/secretfile],[{mount.options}]
-
-For example::
-
- 10.10.10.10:6789:/ /mnt/ceph ceph name=admin,secretfile=/etc/ceph/secret.key,noatime,_netdev 0 2
-
-.. important:: The ``name`` and ``secret`` or ``secretfile`` options are
- mandatory when you have Ceph authentication running.
-
-See `User Management`_ for details.
-
-
-FUSE
-====
-
-To mount Ceph FS in your file systems table as a filesystem in user space, add the
-following to ``/etc/fstab``::
-
- #DEVICE PATH TYPE OPTIONS
- none /mnt/ceph fuse.ceph ceph.id={user-ID}[,ceph.conf={path/to/conf.conf}],_netdev,defaults 0 0
-
-For example::
-
- none /mnt/ceph fuse.ceph ceph.id=myuser,_netdev,defaults 0 0
- none /mnt/ceph fuse.ceph ceph.id=myuser,ceph.conf=/etc/ceph/foo.conf,_netdev,defaults 0 0
-
-Ensure you use the ID (e.g., ``admin``, not ``client.admin``). You can pass any valid
-``ceph-fuse`` option to the command line this way.
-
-See `User Management`_ for details.
-
-
-.. _User Management: ../../rados/operations/user-management/