My Avatar

skylens

(●´ω`●)/

Ansible 安装与简单配置

2018年5月27日 星期天, 发表于 昆明

前言

Ansible 是一款使用 Python 开发的运维自动化工具。

安装

yum install -y epel-release
yum install -y ansible
sudo easy_install pip
sudo pip install ansible

配置

ssh-keygen -t rsa -b 4096
ssh-copy-id testuser@192.168.1.100
ssh-copy-id testuser@192.168.1.101
ssh-copy-id testuser@test.example.com
vim /etc/ansible/hosts

[testgroup]
192.168.1.100
192.168.1.101
test.example.com
ansible -m ping all
ansible -m ping testgroup
ansible -m shell -a 'free -m' all
ansible -m command -a 'uptime' all

参考

ansible-tran.readthedocs.io

CSDN

学习中。。。