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

ansible

时间:2019-08-10 11:55:48      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:上传   force   目录   nec   author   ant   安装ansible   disco   cts   

环境准备:
管理机ip(类比服务端ip): 192.168.124.73
被管理机ip(类比客户端ip):192.168.124.147
1.安装ansible
yum install ansible -y
2.查看ansible版本
ansible --version
3.生成公钥私钥
ssh-keygen

Enter passphrase (empty for no passphrase):(回车)
Enter same passphrase again:(回车)
4.进到.ssh目录下
cd .ssh

5.将公钥上传到被管理机
ssh-copy-id -i root@192.168.124.147(被管理机ip)

Are you sure you want to continue connecting (yes/no)? yes
root@192.168.124.147‘s password: (输入被管理机的密码)

此时 被管理机的.ssh目录下会自动生成一个 authorized_keys(认证过的密钥)

  1. 编辑配置文件
    vim /etc/ansible/hosts

在末端添加一个模块
[test-servers]
192.168.124.147(被管理机ip)
7.测试连接
ansible -m ping ‘test-servers‘

会出现:
192.168.1.129 | SUCCESS => {
"ansible_facts": {
"discovered_interpreter_python": "/usr/bin/python"
},
"changed": false,
"ping": "pong"
}
8.此时我们可以测试操作一下,将管理机上家目录下的we.sh文件传到被管理机的/tmp目录下
ansible test-servers -m copy -a "src=/root/we.sh dest=/tmp/ owner=root group=root mode=0755 force=yes"

此时,在管理机上会显示传输成功
在被管理机的/tmp目录下会接收到管理机传输的文件

ansible

标签:上传   force   目录   nec   author   ant   安装ansible   disco   cts   

原文地址:https://blog.51cto.com/14375700/2428269

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