• ansible安装(批量执行命令


    rpm安装

    下载epl源 :  Download the latest epel-release rpm from:http://dl.fedoraproject.org/pub/epel/6/x86_64

      
       执行 wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
      安装epel-release :

        # rpm -Uvh epel-release*rpm

        安装ansible1.9

        # yum install ansible1.9
    ansible管理服务器(安装ansible的服务器)必须配置免密码登录其他需要管理的主机

    各主机执行ssh-keygen生成私钥和公钥,并把所有主机的公钥追加到authorized_keys中,然后分发到ansible管理服务器

    修改个主机的主机名,编辑/etc/hosts文件,把所有主机的ip和主机名写进去

    [root@node01 .ssh]# cat /etc/hosts
    127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
    ::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
    172.16.145.111 node01
    172.16.145.112 node02
    172.16.145.113 node03
    172.16.145.114 node04
    172.16.145.115 node05
    

    接下来就可以配置 hosts文件了,

    [root@node01 .ssh]# cat /etc/ansible/hosts
    [hadoop-all]
    node[01:05]
    
    
    [hadoop-master]
    node[04:05]
    
    [hadoop-slave]
    node[01:03]
    
    [zookeeper-all]
    node[01:03]
    
    
    [hdfs-nn]
    node[04:05]
    
    [hdfs-dn]
    node[01:03]
    
    [hdfs-jn]
    node[01:02]
    
    
    
    [yarn-rm]
    node[04:05]
    
    [yarn-nm]
    node[01:03]
    
    [hive-all]
    node[01:05]
    
    
    [hive-cli]
    node[01:05]
    
    [hive-meta]
    node[04:05]
    
    [hive-hs2]
    node[04:05]
    
    
    [impala-all]
    node[01:05]
    
    [impala-llama]
    node[04:05]
    
    [impala-catalog]
    node04
    
    [impala-state]
    node04
    
    [impala-impalad]
    node[01:03]
    

     执行命令测试ansible能否ping通

    [root@node01 .ssh]# ansible all -m ping
    node03 | success >> {
        "changed": false, 
        "ping": "pong"
    }
    
    node02 | success >> {
        "changed": false, 
        "ping": "pong"
    }
    
    node01 | success >> {
        "changed": false, 
        "ping": "pong"
    }
    
    node05 | success >> {
        "changed": false, 
        "ping": "pong"
    }
    
    node04 | success >> {
        "changed": false, 
        "ping": "pong"
    }
    

     执行服务停止重启命令

    [root@node01 .ssh]# ansible impala-impalad  -m service -a "name=impala-server state=restarted"
    node01 | success >> {
        "changed": true, 
        "name": "impala-server", 
        "state": "started"
    }
    
    node03 | success >> {
        "changed": true, 
        "name": "impala-server", 
        "state": "started"
    }
    
    node02 | success >> {
        "changed": true, 
        "name": "impala-server", 
        "state": "started"
    }
    

     ok,大功告成!

  • 相关阅读:
    5.我国最高山峰是珠穆朗玛峰,8848米。现在我有一张足够大的纸,它的厚度是0.01米。请问,我折叠多少次,可以折成珠穆朗玛峰的高度。
    sqylog 50道练习题
    sqylog练习题 2018.7.10
    WPF---依赖属性(一)
    C#基础知识---is与as
    C#基础知识---装箱与拆箱
    C#基础知识---Lambda表达式
    C#基础知识---Linq操作XML文件
    C#基础知识---匿名方法使用
    C#基础知识---?为何物
  • 原文地址:https://www.cnblogs.com/zwgblog/p/6067940.html
Copyright © 2020-2023  润新知