ansible安装以及配置优化和实现动态inventory

系统环境

# uname -a    
Linux puppetserver25 2.6.32-431.el6.x86_64 #1 SMP Sun Nov 10 22:19:54 EST 2013 x86_64 x86_64 x86_64 GNU/Linux

# cat /etc/issue
Red Hat Enterprise Linux Server release 6.5 (Santiago)
Kernel \r on an \m

# python -V
Python 2.6.6

所需要的rpm包

ansible-2.2.1.0-1.el6.noarch.rpm
libyaml-0.1.3-4.el6_6.x86_64.rpm
python-argparse-1.2.1-2.1.el6.noarch.rpm
python-crypto2.6-2.6.1-2.el6.x86_64.rpm
python-httplib2-0.7.7-1.el6.noarch.rpm
python-jinja2-26-2.6-3.el6.noarch.rpm
python-keyczar-0.71c-1.el6.noarch.rpm
python-six-1.9.0-2.el6.noarch.rpm
PyYAML-3.10-3.1.el6.x86_64.rpm
sshpass-1.05-1.el6.x86_64.rpm

服务器如果可以出公网可以使用pip或者yum安装ansible

1.安装ansible

 yum install ansible -y

2.配置ansible,优化配置,提高ansible性能【/etc/ansible/ansible.cfg】

[defaults]
forks          = 150
transport      = paramiko
#使用facter缓存,默认使用内存,支持redis
gathering = implicit
fact_caching_timeout = 86400
fact_caching = jsonfile
fact_caching_connection = /etc/ansible/facts/cache
host_key_checking = False
remote_user = test
deprecation_warnings = False
callback_plugins   = /etc/ansible/callback_plugins
retry_files_enabled = False
[privilege_escalation]
become=True
become_method=sudo
become_user=root
become_ask_pass=False
[paramiko_connection]
[ssh_connection]
ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no
pipelining = True
[accelerate]
[selinux]
[colors]

优化ssh,提高ansible性能

$ more ~/.ssh/config 
Host * 
 Compression yes 
 ServerAliveInterval 60 
 ServerAliveCountMax 5 
 ControlMaster auto 
 ControlPath ~/.ssh/%[email protected]%h-%p
 ControlPersist 4h

3.启用ansible的callback_plugins 显示ansible-playbook的执行时间

$ more callback_plugins/profile_tasks.py
import datetime
import os
import time
from ansible.plugins.callback import CallbackBase

class CallbackModule(CallbackBase):
    """
    A plugin for timing tasks
    """
    def __init__(self):
        super(CallbackModule, self).__init__()
        self.stats = {}
        self.current = None

    def playbook_on_task_start(self, name, is_conditional):
        """
        Logs the start of each task
        """

        if os.getenv("ANSIBLE_PROFILE_DISABLE") is not None:
            return

        if self.current is not None:
            # Record the running time of the last executed task
            self.stats[self.current] = time.time() - self.stats[self.current]

        # Record the start time of the current task
        self.current = name
        self.stats[self.current] = time.time()

    def playbook_on_stats(self, stats):
        """
        Prints the timings
        """

        if os.getenv("ANSIBLE_PROFILE_DISABLE") is not None:
            return

        # Record the timing of the very last task
        if self.current is not None:
            self.stats[self.current] = time.time() - self.stats[self.current]

        # Sort the tasks by their running time
        results = sorted(
            self.stats.items(),
            key=lambda value: value[1],
            reverse=True,
        )

        # Just keep the top 10
        results = results[:10]

        # Print the timings
        for name, elapsed in results:
            print(
                "{0:-<70}{1:->9}".format(
                    ‘{0} ‘.format(name),
                    ‘ {0:.02f}s‘.format(elapsed),
                )
            )

        total_seconds = sum([x[1] for x in self.stats.items()])
        print("\nPlaybook finished: {0}, {1} total tasks.  {2} elapsed. \n".format(
                time.asctime(),
                len(self.stats.items()),
                datetime.timedelta(seconds=(int(total_seconds)))
                )
          )

执行的效果如下

 
test connection --------------------------------------------------------- 1.17s

Playbook finished: Wed Feb 15 13:09:06 2017, 1 total tasks.  0:00:01 elapsed.

4.编写ansible的动态inventory脚本

$ more inventory.py 
#!/usr/bin/env python
import argparse
import sys

try:
    import json
except ImportError:
    import simplejson as json

def RFile():
    with open(‘hostlist.txt‘, ‘r+‘) as f:
        result=[]
        for line in f.readlines():
            host = line.strip().split()
            if host:
                result.append(host)
    return result

host_list = RFile()

def groupList():
    group_list = []
    for host in host_list:
        group_list.append(host[1])
    print (json.dumps({"all":group_list},indent=4))

def hostList(key):
    host_dict = {}
    for host in host_list:
        host_dict[host[1]] = {"ansible_ssh_host": host[1],"ansible_ssh_port":9999, "ansible_ssh_user":"test","ansible_ssh_pass":
"test","hostname":host[0]}
    print (json.dumps(host_dict[key], indent=4))

if len(sys.argv) == 2 and (sys.argv[1] == ‘--list‘):
    groupList()
elif len(sys.argv) == 3 and (sys.argv[1] == ‘--host‘):
    hostList(sys.argv[2])
else:
    print "Usage: %s --list or --host <hostname>" % sys.argv[0]
    sys.exit(1)
主机列表如下
more hostlist.txt 
backup01.cn 10.44.245.85

测试playbook:test.yml

$ more test.yml 
- hosts: all
  remote_user: test
  gather_facts: no
  become: yes
  become_method: sudo
  tasks:
    - name: test connection
      ping:

执行结果如下:

$ ansible-playbook -i inventory.py test.yml 

PLAY [all] *********************************************************************

TASK [test connection] *********************************************************
ok: [10.44.245.85]

PLAY RECAP *********************************************************************
10.44.245.85               : ok=1    changed=0    unreachable=0    failed=0   

test connection --------------------------------------------------------- 1.17s

Playbook finished: Wed Feb 15 13:20:09 2017, 1 total tasks.  0:00:01 elapsed.
时间: 2024-12-17 21:19:02

ansible安装以及配置优化和实现动态inventory的相关文章

Eclipse 环境安装和配置优化

1.下载相应的eclipse版本.    官方下载地址:http://www.eclipse.org/downloads/    juno版本的64位下载地址:http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/juno/SR2/eclipse-jee-juno-SR2-win32-x86_64.zip 2.解压eclipse-jee-juno-SR2-win32-x86_64.

nginx安装及配置优化

安装环境:centos6.5 64位 nginx版本:nginx-1.4.7 一.安装 安装必要软件 pcre和openssl 为了支持rewrite功能,我们需要安装pcre tar zxvf pcre-8.31.tar.gz cd pcre-8.31 ./configure && make&& make install 为了ssl支持,需要安装openssl yum -y install openssl* 2.安装nginx 解压: tar -zxvf nginx-1.

ansible安装以及配置

1. 安装yum install -y epel-releaseyum install -y ansible 2.  配置 ssh密钥配置首先生成密钥对ssh-keygen -t rsa  直接回车即可,不用设置密钥密码这样会在root家目录下生成.ssh目录,这里面也会生成两个文件 id_rsa 和  id_rsa.pub 然后把公钥(id_rsa.pub)内容放到对方机器的/root/.ssh/authorized_keys里面,包括本机vim /root/.ssh/id_rsa.pub >

CentOS 下 Tomcat安装和配置优化

官网下载 1.直接下载.tar.gz安装包,地址:http://tomcat.apache.org/download-70.cgi 2.使用wget命令下载(推荐). wget -c http://mirrors.hust.edu.cn/apache/tomcat/tomcat-7/v7.0.70/bin/apache-tomcat-7.0.70.tar.gz 解压 依然是直接命令: tar -zxvf apache-tomcat-7.0.70.tar.gz 启动 进入解压后的apache-to

ansible安装和配置

一.安装ansible准备 //安装准备 1.两台机器 172.7.15.106 172.7.15.111 2.设置hostname以及hosts 172.7.15.106 web9.lulu.com 172.7.15.111 web10.lulu.com 3. 安装ansible (只需要在106--server端安装) [[email protected] ~]# yum install -y epel-release [[email protected] ~]# yum install -

Ansible 安装和配置

We start with installing Ansible using root. step 1 - run "yum install ansible" to install it on one machine with CenOS 7; step 2 - configuring ansible hosts Open the file /etc/ansible/hosts, in this file, add: [servers] host1 [email protected]_

ansible安装及使用

一.ansible介绍 1.ansible ansible是新出现的自动化运维工具,基于Python研发.糅合了众多老牌运维工具的优点实现了批量操作系统配置.批量程序的部署.批量运行命令等功能.仅需在管理工作站上安装ansible程序配置被管控主机的IP信息,被管控的主机无客户端.ansible应用程序存在于epel(第三方社区)源,依赖于很多python组件.主要包括: (1).连接插件connection plugins:负责和被监控端实现通信: (2).host inventory:指定操

Ansible安装部署及常用模块详解

Ansible命令使用 Ansible语法使用ansible <pattern_goes_here> -m <module_name> -a <arguments> -m NAME,–module-name=NAME:指定执行使用的模块 -u USERNAME,–user=USERNAME:指定远程主机以USERNAME运行命令 -s,–sudo:相当于Linux系统下的sudo命令 -USUDO_USERNAME,–sudo-user=SUDO_USERNAME:使用

Ansible详解(一)基础安装和配置

ansible 是一款轻量级自动化运维工具,由的 Python 语言开发,结合了多种自动化运维工具的特性,实现了批量系统配置,批量程序部署,批量命令执行等功能; ansible 是基于模块化实现批量操作的. 一.安装 控制机器 pip install ansible==2.5.5 yum install sshpass 受控机器 yum install libselinux-python yum install python2-simplejson version<python2.4 测试 ec