设为首页 收藏本站
查看: 854|回复: 0

[经验分享] ansible 安装和测试

[复制链接]
YunVN网友  发表于 2018-7-29 06:46:28 |阅读模式
  一、环境准备
  [root@master ~]# cat /etc/redhat-release
  

CentOS>
  hostname       ip
  
Master    master         10.0.0.28
  
Minion    client01        10.0.0.20
  
Minion    client02        10.0.0.21
  

  二、安装Ansible


  • 更改yum 源:
  [root@master ~]#wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
  2.软件包安装
  EPEL 已经提供了ansible 所需的所有支持软件包,所以在这里使用epel 源进行安装:
  

[root@master ~]#  
rpm -ivh  http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm
  
Retrieving http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm

  
warning: /var/tmp/rpm-tmp.MYaX9K: Header V3 RSA/SHA256 Signature, key>  
Preparing...                ########################################### [100%]
  1:epel-release           warning: /etc/yum.repos.d/epel.repo created as /etc/yum.repos.d/epel.repo.rpmnew
  
########################################### [100%]
  

  3.安装Ansible
  [root@master ~]# yum install ansible -y
  4.免密要认证
  

[root@master ~]#ssh-keygen -t rsa  ssh-copy-id -i ~/.ssh/id_rsa.pub 10.0.0.20
  ssh-copy-id -i ~/.ssh/id_rsa.pub 10.0.0.21
  cp /etc/ansible/hosts /etc/ansible/hosts.ori
  > /etc/ansible/hosts
  vim /etc/ansible/hosts
  

  ansible 默认提供了很多模块来供我们使用。在 Linux 中,我们可以通过 ansible-doc -l 命令查看到当前 ansible 都支持哪些模块,通过 ansible-doc  -s  模块名  又可以查看该模块有哪些参数可以使用。
  5.建立host文件
  Ansible 的host文件默认在/etc/ansible/ 这个目录下面,采用rpm安装的ansible会将该host文件作为范例,其中提示ansible是支持域名和IP的两种客户端命名格式的,进过测试时没有问题的,还支持不同的安装分组方法,建议好好看看,这里提供三台机器,分为master client01  client02  将他们分为两组 master 和slave
  

[root@master ~]# cat /etc/ansible/hosts  
[localhost]
  
127.0.0.1
  
[slave]
  
10.0.0.20
  
10.0.0.21
  

  6.测试ansible 的使用
  在这里使用ping模块:
  

[root@master ~]# ansible slave -i /etc/ansible/hosts -m ping  
10.0.0.20 | SUCCESS => {
  "changed": false,
  "ping": "pong"
  
}
  
10.0.0.21 | SUCCESS => {
  "changed": false,
  "ping": "pong"
  
}
  
}
  

  解读:从返回值分析,ansiable salve 接待你10.0.0.20,10.0.0.21 的ping
  值成功。说明ansiable 已经能够使用。
  7.验证是否支持域名解析测试:
  

tail -3 /etc/hosts  
10.0.0.28 master.test.com
  
10.0.0.21 client02
  
10.0.0.20 agent.test.com
  

[root@master ~]# cat /etc/ansible/hosts  
[localhost]
  
master.test.com
  
[slave]
  
client02
  
agent.test.com
  

  [root@master ~]# ansible slave -i /etc/ansible/hosts -m ping
  

paramiko: The authenticity of host 'agent.test.com' can't be established.  
The ssh-rsa key fingerprint is 3d906ef1d450e4cc7031aef5e8c296f6.
  
Are you sure you want to continue connecting (yes/no)?
  
yes
  

  
paramiko: The authenticity of host 'client02' can't be established.
  
The ssh-rsa key fingerprint is 3d906ef1d450e4cc7031aef5e8c296f6.
  
Are you sure you want to continue connecting (yes/no)?
  
agent.test.com | SUCCESS => {
  "changed": false,
  "ping": "pong"
  
}
  
yes
  
client02 | SUCCESS => {
  "changed": false,
  "ping": "pong"
  
}
  
[root@master ~]# ansible slave -i /etc/ansible/hosts -m ping
  
agent.test.com | SUCCESS => {
  "changed": false,
  "ping": "pong"
  
}
  
client02 | SUCCESS => {
  "changed": false,
  "ping": "pong"
  
}
  

  验证是支持服务器本地域名解析的

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-542719-1-1.html 上篇帖子: ansible不配置ssh免密钥,使用密码登录 下篇帖子: ansible之copy模块测试
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表