mirror of
https://github.com/ceph/ceph
synced 2025-01-26 13:06:29 +00:00
93dcc9886f
This makes the-separate-words in the url match as separate words in searches, where this_way only matches an explicit "this_way" search. http://www.mattcutts.com/blog/dashes-vs-underscores/ Signed-off-by: Tommi Virtanen <tommi.virtanen@dreamhost.com>
25 lines
868 B
ReStructuredText
25 lines
868 B
ReStructuredText
================================
|
|
Deploying Ceph with ``mkcephfs``
|
|
================================
|
|
|
|
Once you have copied your Ceph Configuration to the OSD Cluster hosts, you may deploy Ceph with the ``mkcephfs`` script.
|
|
|
|
.. note:: ``mkcephfs`` is a quick bootstrapping tool. It does not handle more complex operations, such as upgrades.
|
|
|
|
For production environments, you will deploy Ceph using Chef cookbooks (coming soon!).
|
|
|
|
To run ``mkcephfs``, execute the following::
|
|
|
|
$ mkcephfs -a -c <path>/ceph.conf -k mycluster.keyring
|
|
|
|
The script adds an admin key to the ``mycluster.keyring``, which is analogous to a root password.
|
|
|
|
To start the cluster, execute the following::
|
|
|
|
/etc/init.d/ceph -a start
|
|
|
|
Ceph should begin operating. You can check on the health of your Ceph cluster with the following::
|
|
|
|
ceph -k mycluster.keyring -c <path>/ceph.conf health
|
|
|