ceph/doc/cephfs/fstab.rst
John Wilkins f2c7a60c90 doc: Fixed many hyperlinks, a few typos, and some minor clarifications.
fixes: #3564

Signed-off-by: John Wilkins <john.wilkins@inktank.com>
2012-12-03 12:22:37 -08:00

19 lines
860 B
ReStructuredText

==========================================
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. To mount Ceph FS in your file systems table, 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,noauto,rw,noexec,nodev,noatime,nodiratime 0 2
.. important:: The ``name`` and ``secret`` or ``secretfile`` options are
mandatory when you have Ceph authentication running. See `Authentication`_
for details.
.. _Authentication: ../../rados/operations/authentication/