mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
f8ce121a27
fixed invalid formatting.
81 lines
2.1 KiB
ReStructuredText
81 lines
2.1 KiB
ReStructuredText
==========================================================================
|
|
RHEL / CentOS / Scientific Linux / Amazon Linux / Oracle Linux
|
|
==========================================================================
|
|
|
|
Beginning with version 0.9.4, Salt has been available in `EPEL`_. It is installable using yum. Salt should work properly with all mainstream derivatives
|
|
of RHEL, including CentOS, Scientific Linux, Oracle Linux and Amazon Linux. Report any bugs or issues to the salt github project.
|
|
|
|
Installation
|
|
============
|
|
|
|
Salt and all dependencies have been accepted into the yum
|
|
reposities for EPEL5 and EPEL6. The latest salt version can be found in epel-testing, while an older but more tested version can be found in regular epel.
|
|
|
|
Example showing how to install salt from epel-testing:
|
|
|
|
.. code-block:: bash
|
|
|
|
yum --enablerepo=epel-testing install salt-minion
|
|
|
|
On RHEL6, the proper jinja package 'python-jinja2' was moved from EPEL to the
|
|
"RHEL Server Optional Channel". Verify this repository is enabled before
|
|
installing salt on RHEL6.
|
|
|
|
.. _`EPEL`: http://fedoraproject.org/wiki/EPEL
|
|
|
|
|
|
Salt can be installed using ``yum`` and is available in the standard Fedora
|
|
repositories.
|
|
|
|
Stable Release
|
|
--------------
|
|
|
|
Salt is packaged separately for the minion and the master. It is necessary only to install the appropriate package for the role the machine will play. Typically, there will be one master and multiple minions.
|
|
|
|
On the salt-master, run this:
|
|
|
|
.. code-block:: bash
|
|
|
|
yum install salt-master
|
|
|
|
On each salt-minion, run this:
|
|
|
|
.. code-block:: bash
|
|
|
|
yum install salt-minion
|
|
|
|
Post-installation tasks
|
|
=======================
|
|
|
|
**Master**
|
|
|
|
To have the Master start automatically at boot time:
|
|
|
|
.. code-block:: bash
|
|
|
|
chkconfig salt-master on
|
|
|
|
|
|
To start the Master:
|
|
|
|
.. code-block:: bash
|
|
|
|
service salt-master start
|
|
|
|
**Minion**
|
|
|
|
To have the Minion start automatically at boot time:
|
|
|
|
.. code-block:: bash
|
|
|
|
chkconfig salt-minion on
|
|
|
|
|
|
To start the Minion:
|
|
|
|
.. code-block:: bash
|
|
|
|
service salt-minion start
|
|
|
|
Now go to the :doc:`Configuring Salt</topics/configuration>` page.
|