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

在centOS 7 上部署ansible自动化运维环境

时间:2019-07-27 14:25:48      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:nbsp   bsp   环境   工具   自动化运维   方便   centos 7   wal   rsa   

环境:
        3台centos 7       
   mycat :      10.0.0.2
   mariadb1:    10.0.0.3
   mariadb2:    10.0.0.4

 

       为了实验方便 firewalld、selinux均处于关闭状态
        hosts文件均添加如下映射:
        10.0.0.2        mycat
        10.0.0.3        mariadb1
        10.0.0.4        mariadb2
1、安装 ansible工具
[root@mycat ~]# yum -y install ansible
2、设置ssh免密登陆
[root@mycat ~]# ssh-keygen                                              // 生成密钥
[root@mycat ~]# ssh-copy-id -i .ssh/id_rsa.pub root@***ip***           // 把密钥导入   
[root@mycat ~]# ssh ***ip***                                          //  登陆
[root@mariadb1 ~]# exit                                              //   登出

 

3、修改/etc/ansible/hosts文件,添加管理主机组,以后可根据组成员进行批量操作
[root@mycat ~]# vim /etc/ansible/hosts
 
[mariadb]                        //名为mariadb的主机组,包含 0.3、0.4两台主机
10.0.0.3
10.0.0.4
 
 
[mycat]                          //名为mycat的组机组,包含0.2主机
10.0.0.2

 

4、用ping模块测试
[root@mycat ~]# ansible mariadb -m ping
10.0.0.4 | SUCCESS => {
    "changed": false,
    "ping": "pong"
}
10.0.0.3 | SUCCESS => {
    "changed": false,
    "ping": "pong"
}

 

在centOS 7 上部署ansible自动化运维环境

标签:nbsp   bsp   环境   工具   自动化运维   方便   centos 7   wal   rsa   

原文地址:https://www.cnblogs.com/BrotherCat/p/11254875.html

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