Ansible 安装与简单配置
2018年5月27日 星期天, 发表于 昆明
前言
Ansible
是一款使用 Python
开发的运维自动化工具。
安装
- 使用包管理方式安装
yum install -y epel-release
yum install -y ansible
- 使用
pip
安装
sudo easy_install pip
sudo pip install ansible
配置
- 创建
ssh
秘钥对,并向需要使用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
-
修改配置文件
-
/etc/ansible/hosts
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
参考
学习中。。。