diff options
author | John Wilkins <john.wilkins@inktank.com> | 2013-10-11 15:07:40 -0700 |
---|---|---|
committer | John Wilkins <john.wilkins@inktank.com> | 2013-10-11 15:07:40 -0700 |
commit | bc50dbbbe59629560f8cb8792a2e31c02bc85bb8 (patch) | |
tree | 873b28f3ae94509e345b3f44d425844660b2a1ef | |
parent | 05b2e445daeac06dfc46e8d2dee4e494778e66f6 (diff) | |
download | ceph-bc50dbbbe59629560f8cb8792a2e31c02bc85bb8.tar.gz |
doc: Created installation doc for Yum priorities. Ceph-specific packages need it.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r-- | doc/install/yum-priorities.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/install/yum-priorities.rst b/doc/install/yum-priorities.rst new file mode 100644 index 00000000000..e4adb72b7dd --- /dev/null +++ b/doc/install/yum-priorities.rst @@ -0,0 +1,20 @@ +=========================== + Installing YUM Priorities +=========================== + +Ceph builds packages for Apache and FastCGI (for 100-continue support) and +QEMU (for ``rbd`` support). You must set priorities in your ``.repo`` +files to ensure that ``yum`` installs the Ceph packages instead of the +standard packages. The ``priorities`` setting requires you to install +and enable ``yum-plugin-priorities``. + +#. Install ``yum-plugin-priorities``. :: + + sudo yum install yum-plugin-priorities + +#. Ensure ``/etc/yum/pluginconf.d/priorities.conf`` exists. :: + +#. Ensure ``priorities.conf`` enables the plugin. :: + + [main] + enabled = 1 |