From 13d6c3cf30ef958005c368de9fc8848dc5db0359 Mon Sep 17 00:00:00 2001 From: Kevin Dalley Date: Mon, 19 May 2014 15:03:35 -0700 Subject: [PATCH] doc: quick-ceph-deploy cleanup Improve documentation in quick-ceph-deploy.rst Use admin-node consistently. ceph should be installed on admin-node for the following reasons: "ceph-deploy admin admin-node" assumes that /etc/ceph exists. "ceph health" requires the use of ceph Signed-off-by: Kevin Dalley --- doc/start/quick-ceph-deploy.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/start/quick-ceph-deploy.rst b/doc/start/quick-ceph-deploy.rst index 8bbb0cae8d1..ef275ba1d3f 100644 --- a/doc/start/quick-ceph-deploy.rst +++ b/doc/start/quick-ceph-deploy.rst @@ -70,7 +70,7 @@ configuration file, perform the following steps using ``ceph-deploy``. For example:: - ceph-deploy install node1 node2 node3 + ceph-deploy install admin-node node1 node2 node3 The ``ceph-deploy`` utility will install Ceph on each node. **NOTE**: If you use ``ceph-deploy purge``, you must re-execute this step @@ -148,11 +148,11 @@ configuration file, perform the following steps using ``ceph-deploy``. CLI without having to specify the monitor address and ``ceph.client.admin.keyring`` each time you execute a command. :: - ceph-deploy admin {ceph-node} + ceph-deploy admin {admin-node} {ceph-node} For example:: - ceph-deploy admin node1 node2 node3 admin-node + ceph-deploy admin admin-node node1 node2 node3 **Note:** Since you are using ``ceph-deploy`` to talk to the local host (admin-node), your host must be reachable by its hostname @@ -325,6 +325,7 @@ example:: a test file containing some object data and a pool name using the ``rados put`` command on the command line. For example:: + echo {Test-data} > testfile.txt rados put {object-name} {file-path} --pool=data rados put test-object-1 testfile.txt --pool=data