码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu下Ansible安装和使用

时间:2018-05-23 10:20:28      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:authorize   adt   upd   ping   安装   repos   target   host   targe   

Ansible是一个批量部署的工具

参考:Ansible中文权威指南

1.安装

sudo apt-get install software-properties-common
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get update
sudo apt-get install ansible

2.在/etc/ansible/hosts文件中添加服务器的ip

vim /etc/ansible/hosts

3.需要将自己机器的~/.ssh/目录下公钥,即pub文件,添加到服务器的~/.ssh/authorized_keys文件中

vim ~/.ssh/authorized_keys

测试ssh是否可以免密登录

4.测试能否ping通,以root用户登录

ansible all -m ping -u root

5.测试建立一个test文件夹

ansible all -u root -a "/bin/mkdir test"

 

Ubuntu下Ansible安装和使用

标签:authorize   adt   upd   ping   安装   repos   target   host   targe   

原文地址:https://www.cnblogs.com/tonglin0325/p/9074958.html

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