ansible使用笔记
文章目录
手头的服务器越来越多,下决心好好学学ansible了
#本机安装 使用本地机器(mac)作为控制端
pip install ansible
#加入被控机器
以青云上的两台服务器为例(ubuntu12.04 64bit),地址分别为:
- 209.9.106.126 (insight)
- 207.226.143.91 (cypress)
以及内网的一台机器:
- 10.10.100.114 (gogs)
vim Inventory
|
|
###ssh免密码配置
最简单的方式是:ssh-copy-id -i ~/.ssh/id_rsa.pub 209.9.106.126
###跑跑看 ansible -i Inventory all -m ping (以下为输出)
|
|
#默认配置 vim ~/.ansible.cfg
|
|
之后就可以不用-i了
###给受控机器添加SSH authorized key 批量配置authorized key的话,使用核心模块authorized_key_module
ansible -i Inventory insight -m authorized_key -a “user=ubuntu key=https://github.com/wwj718.keys” #使用核心模块-m authorized_key,使用Ad-hoc(快速运行)
#随便做些探索 ansible cypress -a “ls ~” ansible insight -a “ls ~” ansible all -a “ls ~”
###copy file(local => remote) echo “#hello ansible copy” > /tmp/hello.py ansible all -m copy -a “src=/tmp/hello.py dest=/tmp” ansible all -a “cat /tmp/hello.py”
以下为输出:
|
|
###安装软件包 ansible gogs -m apt -a ’name=nethogs’ -u wwj718 –sudo -K
#资源
#参考资料
文章作者 种瓜
上次更新 2016-01-14