]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: quick-ceph-deploy cleanup 1837/head
authorKevin Dalley <kevin@kelphead.org>
Mon, 19 May 2014 22:03:35 +0000 (15:03 -0700)
committerKevin Dalley <kevin@kelphead.org>
Mon, 19 May 2014 22:03:35 +0000 (15:03 -0700)
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 <kevin@kelphead.org>
doc/start/quick-ceph-deploy.rst

index 8bbb0cae8d18ac19d5704539ba3716d9b3749720..ef275ba1d3f03e8cdc5858b73c265500bc5749ae 100644 (file)
@@ -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