mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
410 lines
14 KiB
ReStructuredText
410 lines
14 KiB
ReStructuredText
7 years ago
|
Installation Guide
|
||
|
==================
|
||
13 years ago
|
|
||
11 years ago
|
.. contents:: Topics
|
||
|
|
||
7 years ago
|
Welcome to the Ansible Installation Guide!
|
||
11 years ago
|
|
||
11 years ago
|
.. _what_will_be_installed:
|
||
|
|
||
11 years ago
|
Basics / What Will Be Installed
|
||
11 years ago
|
```````````````````````````````
|
||
13 years ago
|
|
||
11 years ago
|
Ansible by default manages machines over the SSH protocol.
|
||
13 years ago
|
|
||
11 years ago
|
Once Ansible is installed, it will not add a database, and there will be no daemons to start or keep running. You only need to install it on one machine (which could easily be a laptop) and it can manage an entire fleet of remote machines from that central point. When Ansible manages remote machines, it does not leave software installed or running on them, so there's no real question about how to upgrade Ansible when moving to a new version.
|
||
13 years ago
|
|
||
11 years ago
|
.. _what_version:
|
||
|
|
||
11 years ago
|
What Version To Pick?
|
||
|
`````````````````````
|
||
13 years ago
|
|
||
11 years ago
|
Because it runs so easily from source and does not require any installation of software on remote
|
||
9 years ago
|
machines, many users will actually track the development version.
|
||
13 years ago
|
|
||
9 years ago
|
Ansible's release cycles are usually about four months long. Due to this short release cycle,
|
||
|
minor bugs will generally be fixed in the next release versus maintaining backports on the stable branch.
|
||
|
Major bugs will still have maintenance releases when needed, though these are infrequent.
|
||
11 years ago
|
|
||
|
If you are wishing to run the latest released version of Ansible and you are running Red Hat Enterprise Linux (TM), CentOS, Fedora, Debian, or Ubuntu, we recommend using the OS package manager.
|
||
12 years ago
|
|
||
11 years ago
|
For other installation options, we recommend installing via "pip", which is the Python package manager, though other options are also available.
|
||
|
|
||
|
If you wish to track the development release to use and test the latest features, we will share
|
||
11 years ago
|
information about running from source. It's not necessary to install the program to run from source.
|
||
11 years ago
|
|
||
11 years ago
|
.. _control_machine_requirements:
|
||
|
|
||
11 years ago
|
Control Machine Requirements
|
||
|
````````````````````````````
|
||
12 years ago
|
|
||
7 years ago
|
Currently Ansible can be run from any machine with Python 2 (versions 2.6 or 2.7) or Python 3 (versions 3.5 and higher) installed (Windows isn't supported for the control machine).
|
||
12 years ago
|
|
||
8 years ago
|
.. note::
|
||
7 years ago
|
Ansible 2.2 introduces a tech preview of support for Python 3 (versions 3.5 and higher). For more information, see `Python 3 Support <http://docs.ansible.com/ansible/python_3_support.html>`_.
|
||
8 years ago
|
|
||
11 years ago
|
This includes Red Hat, Debian, CentOS, OS X, any of the BSDs, and so on.
|
||
9 years ago
|
|
||
|
.. note::
|
||
|
|
||
7 years ago
|
Mac OS X by default is configured for a small number of file handles, so if you want to use 15 or more forks you'll need to raise the ulimit with ``sudo launchctl limit maxfiles unlimited``. This command can also fix any "Too many open files" error.
|
||
9 years ago
|
|
||
|
|
||
9 years ago
|
.. warning::
|
||
|
|
||
8 years ago
|
Please note that some modules and plugins have additional requirements. For modules these need to be satisfied on the 'target' machine and should be listed in the module specific docs.
|
||
9 years ago
|
|
||
11 years ago
|
.. _managed_node_requirements:
|
||
11 years ago
|
|
||
11 years ago
|
Managed Node Requirements
|
||
|
`````````````````````````
|
||
11 years ago
|
|
||
8 years ago
|
On the managed nodes, you need a way to communicate, which is normally ssh. By
|
||
|
default this uses sftp. If that's not available, you can switch to scp in
|
||
|
:file:`ansible.cfg`. You also need Python 2.6 or later.
|
||
13 years ago
|
|
||
12 years ago
|
.. note::
|
||
|
|
||
|
Ansible's "raw" module (for executing commands in a quick and dirty
|
||
12 years ago
|
way) and the script module don't even need that. So technically, you can use
|
||
12 years ago
|
Ansible to install python-simplejson using the raw module, which
|
||
|
then allows you to use everything else. (That's jumping ahead
|
||
|
though.)
|
||
13 years ago
|
|
||
11 years ago
|
.. note::
|
||
|
|
||
|
If you have SELinux enabled on remote nodes, you will also want to install
|
||
11 years ago
|
libselinux-python on them before using any copy/file/template related functions in
|
||
11 years ago
|
Ansible. You can of course still use the yum module in Ansible to install this package on
|
||
|
remote systems that do not have it.
|
||
|
|
||
12 years ago
|
.. note::
|
||
|
|
||
8 years ago
|
Ansible 2.2 introduces a tech preview of support for Python 3. For more information, see `Python 3 Support <http://docs.ansible.com/ansible/python_3_support.html>`_.
|
||
|
|
||
8 years ago
|
By default, Ansible uses Python 2 in order to maintain compatibility with older distributions
|
||
8 years ago
|
such as RHEL 6. However, some Linux distributions (Gentoo, Arch) may not have a
|
||
12 years ago
|
Python 2.X interpreter installed by default. On those systems, you should install one, and set
|
||
11 years ago
|
the 'ansible_python_interpreter' variable in inventory (see :doc:`intro_inventory`) to point at your 2.X Python. Distributions
|
||
12 years ago
|
like Red Hat Enterprise Linux, CentOS, Fedora, and Ubuntu all have a 2.X interpreter installed
|
||
|
by default and this does not apply to those distributions. This is also true of nearly all
|
||
9 years ago
|
Unix systems.
|
||
|
|
||
8 years ago
|
|
||
9 years ago
|
If you need to bootstrap these remote systems by installing Python 2.X,
|
||
|
using the 'raw' module will be able to do it remotely. For example,
|
||
9 years ago
|
``ansible myhost --sudo -m raw -a "yum install -y python2 python-simplejson"``
|
||
9 years ago
|
would install Python 2.X and the simplejson module needed to run ansible and its modules.
|
||
12 years ago
|
|
||
11 years ago
|
.. _installing_the_control_machine:
|
||
|
|
||
|
Installing the Control Machine
|
||
|
``````````````````````````````
|
||
11 years ago
|
.. _from_yum:
|
||
|
|
||
7 years ago
|
Latest Release via DNF or Yum
|
||
|
+++++++++++++++++++++++++++++
|
||
|
|
||
|
On Fedora:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ sudo dnf install ansible
|
||
|
|
||
|
On RHEL and CentOS:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ sudo yum install ansible
|
||
12 years ago
|
|
||
7 years ago
|
.. note:: We've changed how the Ansible community packages are distributed.
|
||
7 years ago
|
For users of RHEL/CentOS/Scientific Linux version 7, the Ansible community RPM
|
||
|
package will transition from the EPEL repository to the Extras channel. There will be no
|
||
7 years ago
|
change for version 6 of RHEL/CentOS/Scientific Linux since Extras is not a part of version 6.
|
||
12 years ago
|
|
||
7 years ago
|
RPMs for RHEL7 are available from `the Extras channel <https://access.redhat.com/solutions/912213>`_.
|
||
12 years ago
|
|
||
7 years ago
|
RPMs for RHEL6 are available from yum for `EPEL
|
||
|
<http://fedoraproject.org/wiki/EPEL>`_ 6 and currently supported
|
||
|
Fedora distributions.
|
||
8 years ago
|
|
||
7 years ago
|
Ansible will also have RPMs/YUM-repo available `here <https://releases.ansible.com/ansible/rpm>`_.
|
||
13 years ago
|
|
||
7 years ago
|
Ansible version 2.4 can manage earlier operating
|
||
7 years ago
|
systems that contain Python 2.6 or higher.
|
||
13 years ago
|
|
||
7 years ago
|
You can also build an RPM yourself. From the root of a checkout or tarball, use the ``make rpm`` command to build an RPM you can distribute and install.
|
||
12 years ago
|
|
||
|
.. code-block:: bash
|
||
13 years ago
|
|
||
7 years ago
|
$ git clone https://github.com/ansible/ansible.git
|
||
13 years ago
|
$ cd ./ansible
|
||
|
$ make rpm
|
||
9 years ago
|
$ sudo rpm -Uvh ./rpm-build/ansible-*.noarch.rpm
|
||
13 years ago
|
|
||
11 years ago
|
.. _from_apt:
|
||
|
|
||
11 years ago
|
Latest Releases Via Apt (Ubuntu)
|
||
|
++++++++++++++++++++++++++++++++
|
||
13 years ago
|
|
||
11 years ago
|
Ubuntu builds are available `in a PPA here <https://launchpad.net/~ansible/+archive/ansible>`_.
|
||
12 years ago
|
|
||
11 years ago
|
To configure the PPA on your machine and install ansible run these commands:
|
||
12 years ago
|
|
||
12 years ago
|
.. code-block:: bash
|
||
12 years ago
|
|
||
7 years ago
|
$ sudo apt-get update
|
||
10 years ago
|
$ sudo apt-get install software-properties-common
|
||
11 years ago
|
$ sudo apt-add-repository ppa:ansible/ansible
|
||
11 years ago
|
$ sudo apt-get update
|
||
12 years ago
|
$ sudo apt-get install ansible
|
||
13 years ago
|
|
||
10 years ago
|
.. note:: On older Ubuntu distributions, "software-properties-common" is called "python-software-properties".
|
||
|
|
||
11 years ago
|
Debian/Ubuntu packages can also be built from the source checkout, run:
|
||
13 years ago
|
|
||
12 years ago
|
.. code-block:: bash
|
||
|
|
||
11 years ago
|
$ make deb
|
||
13 years ago
|
|
||
11 years ago
|
You may also wish to run from source to get the latest, which is covered above.
|
||
|
|
||
8 years ago
|
Latest Releases Via Apt (Debian)
|
||
|
++++++++++++++++++++++++++++++++
|
||
|
|
||
|
Debian users may leverage the same source as the Ubuntu PPA.
|
||
|
|
||
|
Add the following line to /etc/apt/sources.list:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main
|
||
|
|
||
|
Then run these commands:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
8 years ago
|
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
|
||
8 years ago
|
$ sudo apt-get update
|
||
|
$ sudo apt-get install ansible
|
||
|
|
||
|
.. note:: This method has been verified with the Trusty sources in Debian Jessie and Stretch but may not be supported in earlier versions.
|
||
11 years ago
|
|
||
10 years ago
|
Latest Releases Via Portage (Gentoo)
|
||
|
++++++++++++++++++++++++++++++++++++
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ emerge -av app-admin/ansible
|
||
|
|
||
|
To install the newest version, you may need to unmask the ansible package prior to emerging:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ echo 'app-admin/ansible' >> /etc/portage/package.accept_keywords
|
||
|
|
||
|
.. note::
|
||
|
|
||
|
If you have Python 3 as a default Python slot on your Gentoo nodes (default setting), then you
|
||
|
must set ``ansible_python_interpreter = /usr/bin/python2`` in your group or inventory variables.
|
||
|
|
||
11 years ago
|
Latest Releases Via pkg (FreeBSD)
|
||
|
+++++++++++++++++++++++++++++++++
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ sudo pkg install ansible
|
||
|
|
||
|
You may also wish to install from ports, run:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ sudo make -C /usr/ports/sysutils/ansible install
|
||
|
|
||
10 years ago
|
.. _on_macos:
|
||
11 years ago
|
|
||
10 years ago
|
Latest Releases on Mac OSX
|
||
11 years ago
|
++++++++++++++++++++++++++++++++++++++
|
||
|
|
||
10 years ago
|
The preferred way to install ansible on a Mac is via pip.
|
||
11 years ago
|
|
||
10 years ago
|
The instructions can be found in `Latest Releases Via Pip`_ section.
|
||
11 years ago
|
|
||
10 years ago
|
.. _from_pkgutil:
|
||
|
|
||
|
Latest Releases Via OpenCSW (Solaris)
|
||
|
+++++++++++++++++++++++++++++++++++++
|
||
|
|
||
|
Ansible is available for Solaris as `SysV package from OpenCSW <https://www.opencsw.org/packages/ansible/>`_.
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
# pkgadd -d http://get.opencsw.org/now
|
||
|
# /opt/csw/bin/pkgutil -i ansible
|
||
|
|
||
10 years ago
|
.. _from_pacman:
|
||
|
|
||
|
Latest Releases Via Pacman (Arch Linux)
|
||
|
+++++++++++++++++++++++++++++++++++++++
|
||
|
|
||
|
Ansible is available in the Community repository::
|
||
|
|
||
|
$ pacman -S ansible
|
||
|
|
||
|
The AUR has a PKGBUILD for pulling directly from Github called `ansible-git <https://aur.archlinux.org/packages/ansible-git>`_.
|
||
|
|
||
9 years ago
|
Also see the `Ansible <https://wiki.archlinux.org/index.php/Ansible>`_ page on the ArchWiki.
|
||
|
|
||
|
.. note::
|
||
|
|
||
|
If you have Python 3 as a default Python slot on your Arch nodes (default setting), then you
|
||
|
must set ``ansible_python_interpreter = /usr/bin/python2`` in your group or inventory variables.
|
||
|
|
||
11 years ago
|
.. _from_pip:
|
||
|
|
||
11 years ago
|
Latest Releases Via Pip
|
||
|
+++++++++++++++++++++++
|
||
12 years ago
|
|
||
11 years ago
|
Ansible can be installed via "pip", the Python package manager. If 'pip' isn't already available in
|
||
|
your version of Python, you can get pip by::
|
||
12 years ago
|
|
||
11 years ago
|
$ sudo easy_install pip
|
||
12 years ago
|
|
||
9 years ago
|
Then install Ansible with [1]_::
|
||
12 years ago
|
|
||
11 years ago
|
$ sudo pip install ansible
|
||
8 years ago
|
|
||
9 years ago
|
Or if you are looking for the latest development version::
|
||
8 years ago
|
|
||
7 years ago
|
pip install git+https://github.com/ansible/ansible.git@devel
|
||
13 years ago
|
|
||
11 years ago
|
If you are installing on OS X Mavericks, you may encounter some noise from your compiler. A workaround is to do the following::
|
||
|
|
||
|
$ sudo CFLAGS=-Qunused-arguments CPPFLAGS=-Qunused-arguments pip install ansible
|
||
|
|
||
11 years ago
|
Readers that use virtualenv can also install Ansible under virtualenv, though we'd recommend to not worry about it and just install Ansible globally. Do not use easy_install to install ansible directly.
|
||
13 years ago
|
|
||
11 years ago
|
.. _tagged_releases:
|
||
|
|
||
11 years ago
|
Tarballs of Tagged Releases
|
||
|
+++++++++++++++++++++++++++
|
||
13 years ago
|
|
||
11 years ago
|
Packaging Ansible or wanting to build a local package yourself, but don't want to do a git checkout? Tarballs of releases are available on the `Ansible downloads <http://releases.ansible.com/ansible>`_ page.
|
||
13 years ago
|
|
||
7 years ago
|
These releases are also tagged in the `git repository <https://github.com/ansible/ansible/releases>`_ with the release version.
|
||
|
|
||
|
|
||
7 years ago
|
|
||
|
|
||
8 years ago
|
.. _from_source:
|
||
|
|
||
|
Running From Source
|
||
|
+++++++++++++++++++
|
||
|
|
||
8 years ago
|
Ansible is easy to run from a checkout - root permissions are not required
|
||
|
to use it and there is no software to actually install. No daemons
|
||
8 years ago
|
or database setup are required. Because of this, many users in our community use the
|
||
8 years ago
|
development version of Ansible all of the time so they can take advantage of new features
|
||
|
when they are implemented and easily contribute to the project. Because there is
|
||
8 years ago
|
nothing to install, following the development version is significantly easier than most
|
||
|
open source projects.
|
||
|
|
||
|
.. note::
|
||
|
|
||
8 years ago
|
If you are intending to use Tower as the Control Machine, do not use a source install. Please use OS package manager (like ``apt/yum``) or ``pip`` to install a stable version.
|
||
8 years ago
|
|
||
|
|
||
8 years ago
|
To install from source, clone the Ansible git repository:
|
||
8 years ago
|
|
||
|
.. code-block:: bash
|
||
|
|
||
7 years ago
|
$ git clone https://github.com/ansible/ansible.git --recursive
|
||
8 years ago
|
$ cd ./ansible
|
||
|
|
||
8 years ago
|
Once git has cloned the Ansible repository, setup the Ansible environment:
|
||
|
|
||
8 years ago
|
Using Bash:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ source ./hacking/env-setup
|
||
|
|
||
|
Using Fish::
|
||
|
|
||
|
$ . ./hacking/env-setup.fish
|
||
|
|
||
|
If you want to suppress spurious warnings/errors, use::
|
||
|
|
||
|
$ source ./hacking/env-setup -q
|
||
|
|
||
|
If you don't have pip installed in your version of Python, install pip::
|
||
|
|
||
|
$ sudo easy_install pip
|
||
|
|
||
8 years ago
|
Ansible also uses the following Python modules that need to be installed [1]_:
|
||
8 years ago
|
|
||
8 years ago
|
.. code-block:: bash
|
||
|
|
||
|
$ sudo pip install -r ./requirements.txt
|
||
8 years ago
|
|
||
8 years ago
|
To update ansible checkouts, use pull-with-rebase so any local changes are replayed.
|
||
8 years ago
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ git pull --rebase
|
||
8 years ago
|
|
||
|
Note: when updating ansible checkouts that are v2.2 and older, be sure to not
|
||
|
only update the source tree, but also the "submodules" in git which point at
|
||
|
Ansible's own modules.
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ git pull --rebase #same as above
|
||
8 years ago
|
$ git submodule update --init --recursive
|
||
|
|
||
|
Once running the env-setup script you'll be running from checkout and the default inventory file
|
||
|
will be /etc/ansible/hosts. You can optionally specify an inventory file (see :doc:`intro_inventory`)
|
||
|
other than /etc/ansible/hosts:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ echo "127.0.0.1" > ~/ansible_hosts
|
||
|
$ export ANSIBLE_INVENTORY=~/ansible_hosts
|
||
|
|
||
|
.. note::
|
||
|
|
||
|
ANSIBLE_INVENTORY is available starting at 1.9 and substitutes the deprecated ANSIBLE_HOSTS
|
||
|
|
||
|
You can read more about the inventory file in later parts of the manual.
|
||
|
|
||
|
Now let's test things with a ping command:
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
$ ansible all -m ping --ask-pass
|
||
|
|
||
8 years ago
|
You can also use "sudo make install".
|
||
8 years ago
|
|
||
8 years ago
|
.. _getting_ansible:
|
||
|
|
||
|
Ansible on GitHub
|
||
|
`````````````````
|
||
|
|
||
|
You may also wish to follow the `GitHub project <https://github.com/ansible/ansible>`_ if
|
||
|
you have a GitHub account. This is also where we keep the issue tracker for sharing
|
||
|
bugs and feature ideas.
|
||
|
|
||
|
|
||
13 years ago
|
.. seealso::
|
||
|
|
||
11 years ago
|
:doc:`intro_adhoc`
|
||
13 years ago
|
Examples of basic commands
|
||
|
:doc:`playbooks`
|
||
|
Learning ansible's configuration management language
|
||
13 years ago
|
`Mailing List <http://groups.google.com/group/ansible-project>`_
|
||
|
Questions? Help? Ideas? Stop by the list on Google Groups
|
||
|
`irc.freenode.net <http://irc.freenode.net>`_
|
||
|
#ansible IRC chat channel
|
||
13 years ago
|
|
||
8 years ago
|
.. [1] If you have issues with the "pycrypto" package install on Mac OSX, then you may need to try ``CC=clang sudo -E pip install pycrypto``.
|