summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wilkins <john.wilkins@inktank.com>2013-10-22 13:27:59 -0700
committerJohn Wilkins <john.wilkins@inktank.com>2013-10-22 13:27:59 -0700
commit1bf413eb96700e700421786e44b1f63778a77d62 (patch)
tree33fc0b3575c5c14695c898ec7feab7c06fe29aa9
parent5a6412ef7cfb456d04023cc05bbda8007f35e818 (diff)
downloadceph-1bf413eb96700e700421786e44b1f63778a77d62.tar.gz
doc: Added install for storage cluster.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r--doc/install/install-storage-cluster.rst41
1 files changed, 41 insertions, 0 deletions
diff --git a/doc/install/install-storage-cluster.rst b/doc/install/install-storage-cluster.rst
new file mode 100644
index 00000000000..94cddf08b1d
--- /dev/null
+++ b/doc/install/install-storage-cluster.rst
@@ -0,0 +1,41 @@
+==============================
+ Install Ceph Storage Cluster
+==============================
+
+
+Installing with APT
+===================
+
+Once you have added either release or development packages to APT, you should
+update APT's database and install Ceph::
+
+ sudo apt-get update && sudo apt-get install ceph ceph-mds
+
+
+
+Installing with RPM
+===================
+
+To install pre-requisite packages, execute the following::
+
+ sudo yum install snappy leveldb gdisk python-argparse gperftools-libs
+
+Once you have added either release or development packages, or added a
+``ceph.repo`` file to ``/etc/yum.repos.d``, you can install Ceph packages. ::
+
+ sudo yum install ceph
+
+.. note:: You can also use ``ceph-deploy`` to install Ceph packages.
+
+
+Installing a Build
+==================
+
+If you build Ceph from source code, you may install Ceph in user space
+by executing the following::
+
+ sudo make install
+
+If you install Ceph locally, ``make`` will place the executables in
+``usr/local/bin``. You may add the Ceph configuration file to the
+``usr/local/bin`` directory to run Ceph from a single directory. \ No newline at end of file