diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /doc/rados/deployment/ceph-deploy-install.rst | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | doc/rados/deployment/ceph-deploy-install.rst | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/doc/rados/deployment/ceph-deploy-install.rst b/doc/rados/deployment/ceph-deploy-install.rst new file mode 100644 index 00000000..9a4bbc4e --- /dev/null +++ b/doc/rados/deployment/ceph-deploy-install.rst @@ -0,0 +1,46 @@ +==================== + Package Management +==================== + +Install +======= + +To install Ceph packages on your cluster hosts, open a command line on your +client machine and type the following:: + + ceph-deploy install {hostname [hostname] ...} + +Without additional arguments, ``ceph-deploy`` will install the most recent +major release of Ceph to the cluster host(s). To specify a particular package, +you may select from the following: + +- ``--release <code-name>`` +- ``--testing`` +- ``--dev <branch-or-tag>`` + +For example:: + + ceph-deploy install --release cuttlefish hostname1 + ceph-deploy install --testing hostname2 + ceph-deploy install --dev wip-some-branch hostname{1,2,3,4,5} + +For additional usage, execute:: + + ceph-deploy install -h + + +Uninstall +========= + +To uninstall Ceph packages from your cluster hosts, open a terminal on +your admin host and type the following:: + + ceph-deploy uninstall {hostname [hostname] ...} + +On a Debian or Ubuntu system, you may also:: + + ceph-deploy purge {hostname [hostname] ...} + +The tool will uninstall ``ceph`` packages from the specified hosts. Purge +additionally removes configuration files. + |