pip
for the install, then read on.Ansible uses Python and fortunately Python is already installed on modern versions of OSX
sudo easy_install pipsudo pip
install ansible --quiet
Then, if you would like to update Ansible later, just do:
sudo pip install ansible --upgrade
Some of Ansible’s dependencies need to be compiled, so you’ll need the developer tools that come with Xcode.
You can check if you already have the developer tools by running this:pkgutil --pkg-info=com.apple.pkg.CLTools_Executable
(note: Before OSX Mavericks, the package to check for was “com.apple.pkg.DeveloperToolsCLI”)
If the tools are not installed, you will see this output:
In that case, download and install Xcode from here.
After you’ve installed Ansible, then you’ll want Ansible to know which servers to connect to and manage.
Ansible’s inventory hosts
file is used to list and group your servers. Its default location is /etc/ansible/hosts
.
If you want to have your Ansible hosts file in another location, then you can set this environment variable:
Or you can specify the Ansible hosts
location when running commands with the --inventory-file=
(or -i
) flag:
For more on the inventory hosts file, see: http://docs.ansible.com/intro_inventory.html
For this example, I’ll assume you have servers with the hostnames child1.dev
and child2.dev
. When doing your own install, replace those hostnames with your own.
Your /etc/ansible/hosts
file would look like this:
You want to be able to connect to your servers without having to enter a password every time. If you don’t already have ssh key authentication set up to your children nodes, then do the following…
Generate the ssh key on the master node: Tomb raider 1 download mac.
Then copy your public key to the servers with ssh-copy-id
:
Now you can test the connectivity:
Now you’re ready to actually manage your servers with Ansible’s playbooks: http://docs.ansible.com/playbooks_intro.html
Also Read: