自学内容网 自学内容网

Ansible自动化运维-Ansible安装与主机列表

目录

1.Ansilble的功能及优点

2.Ansible架构

3.Ansible执行流程

4.Ansible安装

5.Ansible配置文件

6.Ansible主机列表


1.Ansilble的功能及优点

(1)远程执行

批量执行远程命令,可以对多台主机进行远程操作。

(2)配置管理

批量配置软件服务,对多台主机进行自动化配置,实现服务的统一配置管理和启停。

(3)事件驱动

通过Ansible的模块,对服务进行不同的事件驱动。

例如:修改配置后重启、只修改配置文件不重启、修改配置文件后重新加载、远程启停服务管理。

(4)管理公有云

通过API接口的方式管理公有云,不过这一块不然如saltstack,saltstack本身可以通过saltcloud管理各大云厂商的云平台。

(5)二次开发

因为语法是Python,所以便于运维进行二次开发。

(6)任务编排

可以通过playbook的方式来统一管理服务,并且可以使用一条命令,实现一套架构的部署。

(7)跨平台跨系统

几乎不受平台和系统的限制,比如安装apache和启动服务。

在Ubuntu上安装apache服务的名字叫apache2,在CentOS上安装apache服务名字叫httpd

在CentOS6上启动Nginx使用命令是/etc/init.d nginx start,在CentOS7上启动服务器使用命令是systemctl start nginx。

2.Ansible架构

(1)连接插件connection plugins用于连接主机,用来连接被管理端。

(2)核心模块core modules连接主机实现操作,它依赖于具体的模块来做具体的事情。

(3)自定义模块custom modules根据自己的需求编写具体的模块。

(4)插件plugins完成模块功能的补充,如Email、logging。

(5)剧本playbook ansible的配置文件,将多个任务定义在剧本中,由ansible自动执行。

(6)主机清单inventor定义ansible需要操作主机的范围。最重要的一点是ansible是模块化的,它所有的操作都依赖于模块。

3.Ansible执行流程

(1)Ansible读取playbook剧本,剧本中会记录对哪些主机执行哪些任务。

(2)首先Ansible通过主机清单找到要执行的主机,然后调用具体的模块。

(3)其次Ansible会通过连接插件连接对应的主机并推送对应的任务列表。

(4)最后被管理的主机会将Ansible发送过来的任务解析为本地Sheel命令执行。

4.Ansible安装

(1)准备一台Ansible(10.0.0.61)主机

(2)安装epel源

[root@Ansible ~]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

(3)安装Ansible

[root@Ansible ~]# yum install -y ansible

(4)Ansible参数

ansible
--version   #ansible版本信息
-v          #显示详细信息
-i          #主机清单文件路径,默认是在/etc/ansible/hosts
-m          #使用的模块名称,默认使用command模块
-a          #使用的模块参数,模块的具体动作
-k          #提示输入ssh密码,而不使用基于ssh的密钥认证
-C          #模拟执行测试,但不会真的执行
-T          #执行命令的超时

(5)查看Ansible版本及模块路径

[root@Ansible ~]# ansible --version
ansible 2.9.27
  config file = /etc/ansible/ansible.cfg
  configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python2.7/site-packages/ansible
  executable location = /usr/bin/ansible
  python version = 2.7.5 (default, Oct 14 2020, 14:45:30) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)]
5.Ansible配置文件

(1)配置文件读取顺序

1、/etc/ansible/ansible.cfg          #配置文件,如果存在则使用
 
2、~/.ansible.cfg                    #用户配置文件,如果存在则使用
 
3、./ansible.cfg                     #本地配置文件,如果存在则重写其他文件
 
4、ANSIBLE_CONFIG                    #环境变量将覆盖所有其他环境变量

(2)配置文件讲解

[root@Ansible ~]# cat /etc/ansible/ansible.cfg 
#inventory = /etc/ansible/hosts          #主机列表配置文件
#library = /usr/share/my_modules/        #库文件存放目录
#remote_tmp = ~/.ansible/tmp             #临时py文件存放在远程主机目录,传输过去执行前存放
#local_tmp = ~/.ansible/tmp              #本机的临时执行目录
#forks = 5                               #默认并发数
#sudo_user = root                        #默认sudo用户
#ask_sudo_pass = True                    #每次执行是否询问sudo的ssh密码
#ask_pass = True                         #每次执行是否询问ssh密码
#remote_port = 22                        #远程主机端口
host_key_checking = False                #跳过检查主机指纹
log_path = /var/log/ansible.log          #ansible日志
 
#普通用户提权操作
[privilege_escalation]
#become=True
#become_method=sudo
#become_user=root
#become_ask_pass=False 
6.Ansible主机列表

etc/ansible/hosts是ansible默认主机资产清单文件,用于定义被管理主机的认证信息, 例如ssh登录用户名、密码以及key相关信息,也可以自定义Inventory主机清单的位置,使用-i指定文件位置即可。

(1)密码链接

[root@Ansible ~]# cat /etc/ansible/hosts
#IP+端口+用户+密码,做了ssh免密钥后就不需要密码了,默认是22,也不需要22
[webs]
10.0.0.7 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass='1'
10.0.0.8 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass='1'
 
 
[root@Ansible ~]# ansible webs -m ping
10.0.0.7 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "ping": "pong"
}
10.0.0.8 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "ping": "pong"
}

(2)密钥链接,先创建公钥和私钥,下发公钥至被控端

#做免密钥
[root@Ansible ~]# ssh-keygen
[root@Ansible ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root@172.16.1.7
[root@Ansible ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub root@172.16.1.8
 
#方式1:主机+端口
[root@Ansible ~]# cat /etc/ansible/hosts
[webs]
10.0.0.7:22
10.0.0.8
[root@Ansible ~]# ansible webs -m ping
10.0.0.8 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "ping": "pong"
}
10.0.0.7 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "ping": "pong"
}
 
#方式2:别名+主机+端口
[root@Ansible ~]# cat /etc/ansible/hosts
[webs]
web01 ansible_ssh_host=10.0.0.7 ansible_ssh_port=22
web02 ansible_ssh_host=10.0.0.8
[root@Ansible ~]# ansible webs -m ping
web01 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "ping": "pong"
}
web02 | SUCCESS => {
    "ansible_facts": {
        "discovered_interpreter_python": "/usr/bin/python"
    }, 
    "changed": false, 
    "ping": "pong"
}
[root@Ansible ~]# 

(3)主机组

 
[root@Ansible ~]# cat /etc/ansible/hosts
[db_group]
db01 ansible_ssh_host=10.0.0.51
db02 ansible_ssh_host=10.0.0.52
 
[web_group]
web01 ansible_ssh_host=10.0.0.7
web02 ansible_ssh_host=10.0.0.8
[root@Ansible ~]# ansible web_group -m ping --list-host   #查看指定组内主机数量
  hosts (2):
    web01
    web02
[root@Ansible ~]# ansible db_group -m ping --list-host
  hosts (2):
    db01
    db02
 
#方式1:主机组+主机+密码
[db_group]
db01 ansible_ssh_host=10.0.0.51
db02 ansible_ssh_host=10.0.0.52
[db_group:vars]
ansible_ssh_pass='1'
 
#方式2:主机组+主机+密钥
[web_group]
Web01 ansible_ssh_host=10.0.0.7
Web01 ansible_ssh_host=10.0.0.8
 
#定义多组,多组汇总整合
#lnmp组包括两个子组[db,web]
[root@Ansible ~]# cat /etc/ansible/hosts
[lnmp:children]
db_group
web_group
 
[db_group]
db01 ansible_ssh_host=10.0.0.51
db02 ansible_ssh_host=10.0.0.52
[db_group:vars]
ansible_ssh_pass='1'
 
[web_group]
web01 ansible_ssh_host=10.0.0.7
web02 ansible_ssh_host=10.0.0.8
 
 
#查看多组
[root@Ansible ~]# ansible lnmp -m ping --list-host
  hosts (4):
    db01
    db02
    web01
    web02
 
#查看所有组
[root@Ansible ~]# ansible all -m ping --list-host
  hosts (4):
    db01
    db02
    web01
    web02


原文地址:https://blog.csdn.net/2301_76966984/article/details/144222113

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!