2012-12-19 21:46:28 +00:00
|
|
|
====================
|
|
|
|
CephFS Quick Start
|
|
|
|
====================
|
2012-07-03 18:21:43 +00:00
|
|
|
|
2012-12-19 21:46:28 +00:00
|
|
|
To use this guide, you must have executed the procedures in the `5-minute
|
|
|
|
Quick Start`_ guide first. Execute this quick start on the client machine.
|
2012-09-04 23:17:29 +00:00
|
|
|
|
2012-10-08 17:48:27 +00:00
|
|
|
|
2012-07-03 18:21:43 +00:00
|
|
|
Kernel Driver
|
2012-10-08 17:48:27 +00:00
|
|
|
=============
|
2012-07-03 18:21:43 +00:00
|
|
|
|
|
|
|
Mount Ceph FS as a kernel driver. ::
|
|
|
|
|
|
|
|
sudo mkdir /mnt/mycephfs
|
|
|
|
sudo mount -t ceph {ip-address-of-monitor}:6789:/ /mnt/mycephfs
|
2013-02-25 16:21:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
.. note:: Mount the CephFS filesystem on the client machine,
|
|
|
|
not the cluster machine. See `FAQ`_ for details.
|
|
|
|
|
|
|
|
|
2012-07-03 18:21:43 +00:00
|
|
|
Filesystem in User Space (FUSE)
|
2012-10-08 17:48:27 +00:00
|
|
|
===============================
|
2012-07-03 18:21:43 +00:00
|
|
|
|
|
|
|
Mount Ceph FS as with FUSE. Replace {username} with your username. ::
|
|
|
|
|
|
|
|
sudo mkdir /home/{username}/cephfs
|
|
|
|
sudo ceph-fuse -m {ip-address-of-monitor}:6789 /home/{username}/cephfs
|
2012-12-19 21:46:28 +00:00
|
|
|
|
2013-02-25 16:21:11 +00:00
|
|
|
|
2012-12-19 21:46:28 +00:00
|
|
|
Additional Information
|
|
|
|
======================
|
|
|
|
|
|
|
|
See `CephFS`_ for additional information. CephFS is not quite as stable
|
|
|
|
as the block device and the object storage gateway. Contact `Inktank`_ for
|
|
|
|
details on running CephFS in a production environment.
|
|
|
|
|
|
|
|
.. _5-minute Quick Start: ../quick-start
|
|
|
|
.. _CephFS: ../../cephfs/
|
2013-02-25 16:21:11 +00:00
|
|
|
.. _Inktank: http://inktank.com
|
|
|
|
.. _FAQ: ../../faq#try-ceph
|