diff options
author | John Wilkins <john.wilkins@inktank.com> | 2013-04-11 15:44:46 -0700 |
---|---|---|
committer | John Wilkins <john.wilkins@inktank.com> | 2013-04-11 15:44:46 -0700 |
commit | 87ff4af1d17ba0d13e508087026f27711cb8de41 (patch) | |
tree | c748dfd0b6c29a5f4b1133997753a789524d3720 | |
parent | 2b6719fe102dee6ab333a17b1d9367a670e7f692 (diff) | |
download | ceph-87ff4af1d17ba0d13e508087026f27711cb8de41.tar.gz |
doc: Added additional note on first step of adding OSD.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r-- | doc/rados/operations/add-or-rm-osds.rst | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/rados/operations/add-or-rm-osds.rst b/doc/rados/operations/add-or-rm-osds.rst index 69cd0f8e935..d7d40211c2a 100644 --- a/doc/rados/operations/add-or-rm-osds.rst +++ b/doc/rados/operations/add-or-rm-osds.rst @@ -75,8 +75,9 @@ hard drive than older hosts in the cluster (i.e., they may have greater weight). #. Create the OSD. If no UUID is given, it will be set automatically when the - OSD starts up. :: - + OSD starts up. The following command will output the OSD number, which you + will need for subsequent steps. :: + ceph osd create [{uuid}] @@ -105,7 +106,7 @@ hard drive than older hosts in the cluster (i.e., they may have greater weight). .. code-block:: ini - [osd.123] + [osd.1] host = {hostname} #. From the host where you keep the master copy of the cluster's @@ -330,7 +331,7 @@ OSD for each drive by repeating this procedure. ceph osd rm {osd-num} #for example - ceph osd rm 123 + ceph osd rm 1 #. Navigate to the host where you keep the master copy of the cluster's ``ceph.conf`` file. :: @@ -341,7 +342,7 @@ OSD for each drive by repeating this procedure. #. Remove the OSD entry from your ``ceph.conf`` file. :: - [osd.123] + [osd.1] host = {hostname} #. From the host where you keep the master copy of the cluster's ``ceph.conf`` file, |