X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fdoc%2Fcephfs%2Fkernel.rst;fp=src%2Fceph%2Fdoc%2Fcephfs%2Fkernel.rst;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=eaaacef3748004149f1737d9bce5158511888a45;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/doc/cephfs/kernel.rst b/src/ceph/doc/cephfs/kernel.rst deleted file mode 100644 index eaaacef..0000000 --- a/src/ceph/doc/cephfs/kernel.rst +++ /dev/null @@ -1,37 +0,0 @@ -====================================== - Mount Ceph FS with the Kernel Driver -====================================== - -To mount the Ceph file system you may use the ``mount`` command if you know the -monitor host IP address(es), or use the ``mount.ceph`` utility to resolve the -monitor host name(s) into IP address(es) for you. For example:: - - sudo mkdir /mnt/mycephfs - sudo mount -t ceph 192.168.0.1:6789:/ /mnt/mycephfs - -To mount the Ceph file system with ``cephx`` authentication enabled, you must -specify a user name and a secret. :: - - sudo mount -t ceph 192.168.0.1:6789:/ /mnt/mycephfs -o name=admin,secret=AQATSKdNGBnwLhAAnNDKnH65FmVKpXZJVasUeQ== - -The foregoing usage leaves the secret in the Bash history. A more secure -approach reads the secret from a file. For example:: - - sudo mount -t ceph 192.168.0.1:6789:/ /mnt/mycephfs -o name=admin,secretfile=/etc/ceph/admin.secret - -If you have more than one filesystem, specify which one to mount using -the ``mds_namespace`` option, e.g. ``-o mds_namespace=myfs``. - -See `User Management`_ for details on cephx. - -To unmount the Ceph file system, you may use the ``umount`` command. For example:: - - sudo umount /mnt/mycephfs - -.. tip:: Ensure that you are not within the file system directories before - executing this command. - -See `mount.ceph`_ for details. - -.. _mount.ceph: ../../man/8/mount.ceph/ -.. _User Management: ../../rados/operations/user-management/