码迷,mamicode.com
首页 > 其他好文 > 详细

ansible 安装配置

时间:2019-08-10 09:55:50      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:创建   打开   follow   建立用户   inux   密钥对   linu   文件中   文件   

安装: yum install -y ansible 关闭selinux 创建一个ssh 放置主机信息 mkdir -p /etc/ansible/ssh cd !$ 创建hosts cat hosts [aliyun] 1.1.1.1 ansible_ssh_port=58102 ansible_ssh_user=xiaowang ansible_ssh_private_key_file=/etc/ansible/xwang.pem [baidu] 2.2.2.2 ansible_ssh_port=58102 ansible_ssh_user=xiaowang ansible_ssh_private_key_file=/etc/ansible/xwang.pem centos7修改主机名: hostnamectl set-hostname baidu 然后reboot 把私钥上传到/etc/ansible/ 这里使用xiaownag用户需要自行建立用户并配置公钥

使用密钥对远程登录Linux服务器

测试:
修改秘钥权限chmod 500 xwang.pem
ansible -i /etc/ansible/ssh/hosts all -m ping
第一次需要认证输入yes
解决办法:在/etc/ansible/ansible.cfg文件中进行配置;
在# uncomment this to disable SSH key host checking下
host_key_checking = False默认是注释掉的  
打开 host_key_checking = False的注释。同样也可以实现跳过 ssh 首次连接提示验证部分

ansible 安装配置

标签:创建   打开   follow   建立用户   inux   密钥对   linu   文件中   文件   

原文地址:https://blog.51cto.com/12328206/2428124

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!