Ansible学习:(一)Ansible基础

一.Ansible简介

ansible是新出现的自动化运维工具,基于Python开发,集合了众多运维工具(puppet、cfengine、chef、func、fabric)的优点,实现了批量系统配置、批量程序部署、批量运行命令等功能。

ansible是基于模块工作的,本身没有批量部署的能力。真正具有批量部署的是ansible所运行的模块,ansible只是提供一种框架。主要包括:

1、连接插件connection plugins:负责和被监控端实现通信;

2、host inventory:指定操作的主机,是一个配置文件里面定义监控的主机;

3、各种模块核心模块、command模块、自定义模块;

4、借助于插件完成记录日志邮件等功能;

5、playbook:剧本执行多个任务时,非必需可以让节点一次性运行多个任务。

二.安装

用yum安装Ansible需要有合适的yum源,本文采用epel作为部署Ansible的yum源。

[[email protected] ~]# yum install epel-release -y
[[email protected] ~]# yum install ansible  -y

三.Ansible相关文件及命令

主程序目录:/etc/ansible/
主配置文件:/etc/ansible/ansible.cfg
默认主机清单:/etc/ansible/hosts
主要命令:/usr/bin/ansible
          /usr/bin/ansible-console
          /usr/bin/ansible-doc
          /usr/bin/ansible-galaxy
          /usr/bin/ansible-playbook
          /usr/bin/ansible-pull
          /usr/bin/ansible-vault

四.快速上手

1. 添加被控主机清单

[[email protected] ~]# cat >> /etc/ansible/hosts  << EOF
> [client]
> 192.168.129.130
> 192.168.129.131
> 192.168.129.132
> EOF

2. 配置无密码访问

1.生成密钥:
[[email protected] ~]# ssh-keygen 
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa): 
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
74:a2:fc:4d:0c:97:0a:a6:4f:e4:8a:e0:44:f5:4d:d0 [email protected]
The key‘s randomart image is:
+--[ RSA 2048]----+
|   . .o.         |
|  . . oE   .     |
| .   .+.+ +      |
|.    * + B       |
|..  . = S o      |
|o. . + . o       |
| .. . . . .      |
|                 |
|                 |
+-----------------+
2.将公钥下发到被管理节点用户的.ssh目录
[[email protected] ~]# ssh-copy-id -i /root/.ssh/id_rsa.pub  [email protected]
The authenticity of host ‘192.168.129.130 (192.168.129.130)‘ can‘t be established.
RSA key fingerprint is 0b:2d:68:5f:50:91:06:07:3c:2a:81:05:3c:c5:f9:2b.
Are you sure you want to continue connecting (yes/no)? yes
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
[email protected]‘s password: ##输入被控端密码

Number of key(s) added: 1

Now try logging into the machine, with:   "ssh ‘[email protected]‘"
and check to make sure that only the key(s) you wanted were added.
3.验证无密码配置是否成功
[[email protected] ~]# ssh [email protected]
Last login: Sun Apr  9 21:32:33 2017 from 192.168.129.134
[[email protected] ~]# 
给其他被控节点下发公钥步骤同上,这里不做详细说明

3.测试主机连通性

[[email protected] ~]# ansible  client -m ping
192.168.129.131 | SUCCESS => {
    "changed": false, 
    "ping": "pong"
}
192.168.129.130 | SUCCESS => {
    "changed": false, 
    "ping": "pong"
}
192.168.129.132 | SUCCESS => {
    "changed": false, 
    "ping": "pong"
}

ok,到这里,Ansible准备工作完毕!

时间: 2024-12-26 12:58:20

Ansible学习:(一)Ansible基础的相关文章

自动化运维工具ansible学习+使用ansible批量推送公钥到远程主机

目录: 一.ansible简介 1.1.ansible是什么 1.2.ansible如何工作 1.3.ansible优缺点 1.4.ansible安装方式 1.5.ansible文件简单介绍 1.6.ansible简单使用 二.ansible-shell简介 2.1.ansible-shell是什么 2.2.ansible-shell安装方式 2.3.ansible-shell简单使用 三.使用ansible的authorized_key模块批量推送公钥到远程主机 3.1.生产秘钥对 3.2.使

mage Ansible学习3 ansible role实例

一.ansible配置文件解析 1./etc/ansible/ansible.cfg配置文件详解 [[email protected] ~]# cat /etc/ansible/ansible.cfg |grep -Ev "^#|^$" [defaults] #默认配置,对所有应用程序都生效 roles_path = /etc/ansible/roles:/usr/share/ansible/roles [inventory] [privilege_escalation] #默认登陆时

ansible 学习笔记(上)

运维工具 当前常见的运维工具(Configuration)有以下一种puppret(ruby)saltstack(python)chefcfengine.... Command and Control; fabricfunc 程序发布: 手动发布 脚本发布 发布程序(运维程序) 程序发布要求:1.不能影响用户体验:2.系统不能停机:3.不能导致系统故障或造成系统完全不可用: 灰度发布模型(考虑以下两种维度):1.主机:2.用户: 发布思路: /webapps/tuangou /webapps/t

ansible(二)基础篇

这篇总结一下Inventory,变量,目标匹配,及/usr/bin/ansible 命令行常用的模块 上一篇也说过Inventory的默认路径是在/etc/ansible/hosts,当然这个东西可以说是静态的,为啥是静态呢,你要手工的把你的要管理的主机写进去. 当然还有一种动态的Inventory,这个其实也简单,就是如果你已经有了一个资源管理系统,里面有你们的所有主机信息.然后咱们写个脚本程序,把你们资源管理系统里面的这些信息给拉过来,以json格式呈现就OK了. 其实ansible还有一种

运维自动化工具ansible学习笔记

利用五一假期的时间学习了下ansible,看了一天的官方文档,对其中需要注意的地方,做下笔记整理下思绪. 一.简介 Ansible是与puppet.saltstack类似的集群管理工具,其优点是仅需要ssh和Python即可使用,而不像puppet.saltstack那样都需要客户端.puppet与saltstack这2个软件都需要安装客户端,而saltstack与ansible很相似,都是属于python流的,但saltstack不是很稳定:puppet虽然稳定,但命令执行的时候,需要配置模块

ansible学习笔记(一)

最近在学习使用ansible,为了未来的大规模部署应用做准备,这东西比我之前用过的puppet,saltstack都简便一点,没有client端,也不需要额外配置,基本上手技能用,据说在国外的热门程度目前也超过saltstack了. 下面就开始零星的记录吧. 确保服务在running状态 tasks:   - name: make sure apache is running     service: name=httpd state=running 写web server的vhost配置文件可

Ansible学习记录五:PlayBook学习

0.介绍 Playbooks 是 Ansible 管理配置.部署应用和编排的语言,可以使用 Playbooks 来描述你想在远程主机执行的策略或者执行的一组步骤过程等 类似于一组任务集,定义好像项目,组织结构,配置文件等信息,通过task将所要做的事情一步一步的组织在一起就是完整的Playbook 官方Demo资料:https://github.com/ansible/ansible-examples Playbooks是采用YMAL语言结构,基础语法请参考:http://docs.ansibl

ansible学习

ansilbe学习 ansible安装 安装依赖库 yum install-y zlib zlib-devel yum install-y openssl openssl-devel 源代码编译安装py #编译安装python2.7 mkdir -p /usr/local/src/python_src cd /usr/local/src/python_src wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tar.bz2 tar

ansible学习笔记(二):ansible for CentOS6安装

### 最近有点儿时间了,再继续学习Asible,本节尝试使用pip安装ansible for CentOS6.5,其中OS是最小化安装. 2.2 Installing ansible on CentOS 6.5 2.2.1 pip安装Ansible ###(1) 准备环境: # python -V       # 版本:Python 2.6.6 # yum install gcc gcc-c++ # yum install git -y # yum install python-devel p