ansible/docsite/latest/rst/gettingstarted.rst

384 lines
14 KiB
ReStructuredText
Raw Normal View History

2012-05-13 17:00:02 +02:00
Getting Started
===============
2012-03-07 17:35:18 +01:00
2012-08-28 21:41:10 +02:00
.. contents::
:depth: 2
2012-03-08 19:36:47 +01:00
Requirements
````````````
2012-03-09 04:50:00 +01:00
Requirements for Ansible are extremely minimal.
2012-03-08 19:36:47 +01:00
2013-08-16 23:02:35 +02:00
For the central Ansible machine, you will need an environment with Python 2.6 or greater installed. If you are running Python 2.5 on an "Enterprise Linux 5" variant, we'll show you how to add 2.6 to your distribution, but most platforms already have a new enough Python. (Note that Windows is not supported as the Ansible control machine.)
You will also want the following Python modules (installed via pip or perhaps via your OS package manager via slightly different names):
2012-03-08 19:36:47 +01:00
* ``paramiko``
* ``PyYAML``
2013-01-28 18:52:47 +01:00
* ``jinja2``
2012-03-08 19:36:47 +01:00
If you are using RHEL or CentOS 5, Python is version 2.4 by default, but you can get Python 2.6 installed easily. `Use EPEL <http://fedoraproject.org/wiki/EPEL>`_ and install these dependencies as follows:
.. code-block:: bash
$ yum install python26 python26-PyYAML python26-paramiko python26-jinja2
2013-08-08 15:14:56 +02:00
On the managed nodes, you only need Python 2.4 or later, but if you are are running less than Python 2.6 on them, you will
also need:
2012-03-08 19:36:47 +01:00
* ``python-simplejson``
2012-03-08 19:36:47 +01:00
2012-08-13 20:51:36 +02:00
.. note::
Ansible's "raw" module (for executing commands in a quick and dirty
way) and the script module don't even need that. So technically, you can use
2012-08-13 20:51:36 +02:00
Ansible to install python-simplejson using the raw module, which
then allows you to use everything else. (That's jumping ahead
though.)
2012-03-08 19:36:47 +01:00
2013-08-08 15:14:56 +02:00
.. note::
If you have SELinux enabled on remote nodes, you will also want to install
python-selinux on them before using any copy/file/template related functions in
Ansible. You can of course still use the yum module in Ansible to install this package on
remote systems that do not have it.
.. note::
Python 3 is a slightly different language than Python 2 and most python programs (including
2013-08-16 23:02:35 +02:00
Ansible) are not switching over yet. However, some Linux distributions (Gentoo, Arch) may not have a
Python 2.X interpreter installed by default. On those systems, you should install one, and set
the 'ansible_python_interpreter' variable in inventory (see :doc:`patterns`) to point at your 2.X python. Distributions
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
Unix systems. If you need to bootstrap these remote systems by installing Python 2.X,
using the 'raw' module will be able to do it remotely.
2012-03-08 19:36:47 +01:00
Getting Ansible
```````````````
2012-05-10 06:58:27 +02:00
If you are interested in using all the latest features, you may wish to keep up to date
with the development branch of the git checkout. This also makes it easiest to contribute
back to the project.
Instructions for installing from source are below.
2012-03-08 19:36:47 +01:00
Ansible's release cycles are usually about two months long. Due to this
short release cycle, minor bugs will generally be fixed in the next release versus maintaining
2012-05-10 06:58:27 +02:00
backports on the stable branch.
2012-03-18 17:55:18 +01:00
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
2012-03-18 17:55:18 +01:00
bugs and feature ideas.
2012-03-08 19:36:47 +01:00
2012-05-10 06:58:27 +02:00
Running From Checkout
+++++++++++++++++++++
Ansible is trivially easy to run from a checkout, root permissions are not required
2012-08-13 20:51:36 +02:00
to use it:
.. code-block:: bash
$ git clone git://github.com/ansible/ansible.git
$ cd ./ansible
$ source ./hacking/env-setup
2012-03-18 17:45:23 +01:00
2013-08-16 23:02:35 +02:00
You will want to install the dependencies needed by Ansible with pip if going from a checkout::
# on Ubuntu, for example:
apt-get install python-dev python-pip
pip install PyYAML Jinja2 paramiko
2013-08-16 23:02:35 +02:00
Once running the env-setup script you'll be running from checkout and the default inventory file
2013-08-20 19:11:51 +02:00
will be /etc/ansible/hosts. You can optionally specify an inventory file (see :doc:`patterns`)
2013-08-16 23:02:35 +02:00
other than /etc/ansible/hosts:
2012-08-13 20:51:36 +02:00
.. code-block:: bash
2012-03-18 17:45:23 +01:00
2012-04-13 03:33:54 +02:00
$ echo "127.0.0.1" > ~/ansible_hosts
$ export ANSIBLE_HOSTS=~/ansible_hosts
You can read more about the inventory file in later parts of the manual.
2012-08-13 20:51:36 +02:00
Now let's test things:
.. code-block:: bash
2012-03-18 17:45:23 +01:00
$ ansible all -m ping --ask-pass
2012-03-08 19:36:47 +01:00
Make Install
++++++++++++
2012-03-18 17:55:18 +01:00
If you are not working from a distribution where Ansible is packaged yet, you can install Ansible
2012-08-13 20:51:36 +02:00
using "make install". This is done through `python-distutils`:
.. code-block:: bash
2012-03-08 19:36:47 +01:00
$ git clone git://github.com/ansible/ansible.git
$ cd ./ansible
$ sudo make install
Via Pip
+++++++
Are you a python developer?
Ansible can be installed via Pip, but when you do so, it will ask to install other dependencies used for
things like 'fireball' mode that you might not need::
$ sudo easy_install pip
$ sudo pip install ansible
Readers that use virtualenv can also install Ansible under virtualenv. Do not use easy_install to install
ansible directly.
2012-03-08 19:36:47 +01:00
Via RPM
+++++++
2012-08-13 20:51:36 +02:00
RPMs for the last Ansible release are available for `EPEL
<http://fedoraproject.org/wiki/EPEL>`_ 6 and currently supported
Fedora distributions. RPMs for openSUSE can be found via the
`openSUSE Software Portal <http://software.opensuse.org/package/ansible>`_
(in the systemsmanagement Project) for all currently supported
openSUSE and SLES distributions.
Ansible itself can manage earlier operating
2012-08-13 20:51:36 +02:00
systems that contain python 2.4 or higher.
If you are using RHEL or CentOS and have not already done so, `configure EPEL <http://fedoraproject.org/wiki/EPEL>`_
2012-08-13 20:51:36 +02:00
.. code-block:: bash
2012-05-10 06:58:27 +02:00
# install the epel-release RPM if needed on CentOS, RHEL, or Scientific Linux
$ sudo yum install ansible
For openSUSE and SUSE Linux Enterprise, add the `systemsmanagement repository <http://download.opensuse.org/repositories/systemsmanagement/>`_
for your distribution:
.. code-block:: bash
# replace $dist with the correct distribution found here: http://download.opensuse.org/repositories/systemsmanagement/
$ sudo zypper ar -f http://download.opensuse.org/repositories/systemsmanagement/$dist/systemsmanagement.repo
$ sudo zypper install ansible
You can also use the ``make rpm`` command to build an RPM you can distribute and install.
2013-01-21 20:49:43 +01:00
Make sure you have ``rpm-build``, ``make``, and ``python2-devel`` installed.
2012-08-13 20:51:36 +02:00
.. code-block:: bash
2012-03-08 19:36:47 +01:00
$ git clone git://github.com/ansible/ansible.git
$ cd ./ansible
$ make rpm
2012-08-15 04:21:57 +02:00
$ sudo rpm -Uvh ~/rpmbuild/ansible-*.noarch.rpm
2013-08-16 23:02:35 +02:00
Via MacPorts on OS X
++++++++++++++++++++
2013-08-16 23:02:35 +02:00
Ansible is easily run or installed from source, but you can also use MacPorts.
To install the stable version of Ansible from MacPorts, run:
.. code-block:: bash
$ sudo port install ansible
If you wish to install the latest build via the MacPorts system from a
git checkout, run:
.. code-block:: bash
$ git clone git://github.com/ansible/ansible.git
$ cd ./ansible/packaging/macports
$ sudo port install
Please refer to the documentation at <http://www.macports.org> for
further information on using Portfiles with MacPorts.
Ubuntu and Debian
+++++++++++++++++
2012-03-18 17:55:18 +01:00
2013-05-28 18:32:14 +02:00
Ubuntu builds are available `in a PPA here <https://launchpad.net/~rquillo/+archive/ansible>`_.
2013-08-16 23:02:35 +02:00
Once configured,
2013-05-28 18:32:14 +02:00
2013-05-28 18:25:44 +02:00
.. code-block:: bash
2013-05-28 18:12:33 +02:00
2013-05-28 18:32:14 +02:00
$ sudo apt-get install ansible
2012-04-18 01:54:23 +02:00
2013-08-16 23:02:35 +02:00
Debian/Ubuntu packages can also be built from the source checkout, run:
2012-05-10 06:58:27 +02:00
2012-08-13 20:51:36 +02:00
.. code-block:: bash
$ make debian
2012-04-18 01:54:23 +02:00
2013-08-16 23:02:35 +02:00
You may also wish to run from source to get the latest, which is covered above.
Gentoo, Arch, Others
++++++++++++++++++++
2013-03-16 15:21:04 +01:00
Gentoo eBuilds are in portage, version 1.0 `coming soon <https://bugs.gentoo.org/show_bug.cgi?id=461830>`_.
.. code-block:: bash
$ emerge ansible
2012-08-07 02:53:33 +02:00
An Arch PKGBUILD is available on `AUR <https://aur.archlinux.org/packages.php?ID=58621>`_
2012-08-13 20:51:36 +02:00
If you have python3 installed on Arch, you probably want to symlink python to python2:
.. code-block:: bash
2012-08-13 20:51:36 +02:00
$ sudo ln -sf /usr/bin/python2 /usr/bin/python
You should also set a 'ansible_python_interpreter' inventory variable (see :doc:`patterns`) for hosts that have python
pointing to python3, so the right python can be found on the managed nodes.
Tagged Releases
+++++++++++++++
Tarballs of releases are available on the ansibleworks.com page.
* `Ansible/downloads <http://ansibleworks.com/releases>`_
These releases are also tagged in the git repository with the release version.
2012-07-04 23:44:39 +02:00
Choosing Between Paramiko and Native SSH
````````````````````````````````````````
2013-08-16 23:02:35 +02:00
By default, ansible 1.3 and later will try to use native SSH for remote communication when possible.
This is done when ControlPersist support is available. Paramiko is however reasonably fast and makes
a good default on versions of Enterprise Linux where ControlPersist is not available. However, Paramiko
does not support some advanced SSH features that folks will want to use. In Ansible 1.2 and before,
the default was strictly paramiko and native SSH had to be explicitly selected with -c ssh or set in the
configuration file.
2012-07-04 23:44:39 +02:00
.. versionadded:: 0.5
If you want to leverage more advanced SSH features (such as Kerberized
SSH or jump hosts), pass the flag "--connection=ssh" to any ansible
command, or set the ANSIBLE_TRANSPORT environment variable to
'ssh'. This will cause Ansible to use openssh tools instead.
2012-07-04 23:44:39 +02:00
If ANSIBLE_SSH_ARGS are not set, ansible will try to use some sensible ControlMaster options
by default. You are free to override this environment variable, but should still pass ControlMaster
options to ensure performance of this transport. With ControlMaster in use, both transports
are roughly the same speed. Without CM, the binary ssh transport is signficantly slower.
If none of this makes sense to you, the default paramiko option is probably fine.
2012-03-08 19:36:47 +01:00
2012-03-08 19:36:47 +01:00
Your first commands
```````````````````
2012-03-18 17:55:18 +01:00
Now that you've installed Ansible, it's time to test it.
Edit (or create) /etc/ansible/hosts and put one or more remote systems in it, for
2012-03-09 20:39:29 +01:00
which you have your SSH key in ``authorized_keys``::
2012-03-08 19:36:47 +01:00
192.168.1.50
aserver.example.org
bserver.example.org
2012-08-13 20:51:36 +02:00
Set up SSH agent to avoid retyping passwords:
2012-03-08 19:36:47 +01:00
2012-08-13 20:51:36 +02:00
.. code-block:: bash
$ ssh-agent bash
$ ssh-add ~/.ssh/id_rsa
2012-03-09 05:05:52 +01:00
(Depending on your setup, you may wish to ansible's --private-key option to specify a pem file instead)
2012-07-04 23:44:39 +02:00
2012-08-13 20:51:36 +02:00
Now ping all your nodes:
2012-03-09 05:05:52 +01:00
2012-08-13 20:51:36 +02:00
.. code-block:: bash
2012-03-08 19:36:47 +01:00
2012-08-13 20:51:36 +02:00
$ ansible all -m ping
2012-07-04 23:44:39 +02:00
2013-02-02 18:24:48 +01:00
Ansible will attempt to remote connect to the machines using your current
user name, just like SSH would. To override the remote user name, just use the '-u' parameter.
2012-08-31 05:55:31 +02:00
If you would like to access sudo mode, there are also flags to do that:
2012-07-04 23:44:39 +02:00
2012-08-13 20:51:36 +02:00
.. code-block:: bash
# as bruce
$ ansible all -m ping -u bruce
2012-07-04 23:44:39 +02:00
# as bruce, sudoing to root
2012-08-13 20:51:36 +02:00
$ ansible all -m ping -u bruce --sudo
2012-07-04 23:44:39 +02:00
# as bruce, sudoing to batman
2012-08-13 20:51:36 +02:00
$ ansible all -m ping -u bruce --sudo --sudo-user batman
2012-07-04 23:44:39 +02:00
2013-06-19 00:37:02 +02:00
(The sudo implementation is changeable in ansible's configuration file if you happen to want to use a sudo
2013-02-02 18:24:48 +01:00
replacement. Flags passed dot sudo can also be set.)
2012-08-13 20:51:36 +02:00
Now run a live command on all of your nodes:
2012-03-09 05:05:52 +01:00
2012-08-13 20:51:36 +02:00
.. code-block:: bash
$ ansible all -a "/bin/echo hello"
2012-03-09 05:05:52 +01:00
2012-03-09 20:39:29 +01:00
Congratulations. You've just contacted your nodes with Ansible. It's
soon going to be time to read some of the more real-world :doc:`examples`, and explore
2012-03-09 20:39:29 +01:00
what you can do with different modules, as well as the Ansible
2012-03-18 17:55:18 +01:00
:doc:`playbooks` language. Ansible is not just about running commands, it
also has powerful configuration management and deployment features. There's more to
explore, but you already have a fully working infrastructure!
2012-03-08 19:36:47 +01:00
A note about Connection (Transport) Modes
`````````````````````````````````````````
Ansible has two major forms of SSH transport implemented, 'ssh' (OpenSSH) and 'paramiko'. Paramiko is a python
SSH implementation and 'ssh' simply calls OpenSSH behind the scenes. There are additionally 'fireball' (an accelerated
remote transport), 'local', and 'chroot' connection modes in Ansible that don't use SSH, but connecting by one of the two
SSH transports is the most common way to manage systems. It is useful to understand the difference between the 'ssh'
and 'paramiko' modes.
Paramiko is provided because older Enterprise Linux operating systems do not have an efficient OpenSSH that support
ControlPersist technology, and in those cases, 'paramiko' is faster than 'ssh'. Thus, until EL6 backports a newer
SSH, 'paramiko' is the faster option on that platform.
However, if you have a newer 'ssh' that supports ControlPersist, usage of the 'ssh' transport unlocks additional
configurability, including the option to use Kerberos. For instance, the latest Fedora and Ubuntu releases
all offer a sufficiently new OpenSSH. With ControlPersist available, 'ssh' is usually about as fast as paramiko.
If you'd like even more speed, read about 'fireball' in the Advanced Playbooks section.
Starting with Ansible 1.2.1, the default transport mode for Ansible is 'smart', which means it will detect
if OpenSSH supports ControlPersist, and will select 'ssh' if available, and otherwise pick 'paramiko'.
Previous versions of Ansible defaulted to 'paramiko'.
A note about Host Key Checking
``````````````````````````````
Ansible 1.2.1 and later have host key checking enabled by default.
If a host is reinstalled and has a different key in 'known_hosts', this will result in a error message until
corrected. If a host is not initially in 'known_hosts' this will result in prompting for confirmation of the key,
which results in a interactive experience if using Ansible, from say, cron.
If you wish to disable this behavior and understand the implications, you can do so by editing /etc/ansible/ansible.cfg or ~/.ansible.cfg::
[defaults]
host_key_checking = False
Alternatively this can be set by an environment variable:
$ export ANSIBLE_HOST_KEY_CHECKING=False
Also note that host key checking in paramiko mode is reasonably slow, therefore switching to 'ssh' is also recommended when using this
feature.
2012-03-09 20:39:29 +01:00
.. seealso::
:doc:`examples`
Examples of basic commands
:doc:`playbooks`
Learning ansible's configuration management language
`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