• ansible基础


    一,ansible简述:

    是一款自动化运维工具,通过ssh对目标主机进行配置、应用部署、任务执行、编排调度等操作。它简化了复杂的环境管理和自动化任务,提高了工作效率和一致性。同时ansibie的剧木(playbooks〉可使用YAML语言进行编写。易于维护和扩展。

    二,anisble 工作机制
    ansible :核心组件核心程序
    hostInventory:记录由ansible管理的主机信息(包括端口、IP、密码等)playbook :”剧本"
    YAML格式文件,多个任务定义在一个文件中,定义主机需要哪些模块来完成的功能core modulest核心模块主要操作是通过调用核心模块来管理任务
    customodlues:自动定义模块,来完成核心无无法完成的功能支持多个语言connectionPlugins:连接插件ansible和HOST通信使用

    三,ansible 具有如下特点:

    1、部署简单,只需在主控端部署Ansible环境, 被控端无需做任何操作
    2、默认使用SSH协议设备进行管理;
    3、主从集中化管理
    4、配置简单、功能强大、扩张性强;
    5、支持API及自定义模块,可以通过Pyhton轻松扩展
    6、通过playbooks 来定制强大的配置、状态管理
    7、对云计算平台、大数据都有很好的支持

    四:ansible部署

    管理端: 192.168.10.23        ansible                    
    被管理端: 192.168.10.14                              
    被管理端: 192.168.10.15

    1. //管理端安装 ansible
    2. yum install -y epel-release //先安装 epel 源
    3. yum install -y ansible
    4. //ansible 目录结构
    5. /etc/ansible/
    6. ├── ansible.cfg #ansible的配置文件,一般无需修改
    7. ├── hosts #ansible的主机清单,用于存储需要管理的远程主机的相关信息
    8. └── roles/ #公共角色目录
    9. //配置主机清单
    10. cd /etc/ansible
    11. vim hosts
    12. [webservers] #配置组名
    13. 192.168.10.14 #组里包含的被管理的主机IP地址或主机名(主机名需要先修改/etc/hosts文件)
    14. [dbservers]
    15. 192.168.10.15
    16. //配置密钥对验证
    17. ssh-keygen -t rsa #一路回车,使用免密登录
    18. sshpass -p 'abc1234'
    19. ssh-copy-id root@192.168.10.14
    20. sshpass -p 'abc1234'
    21. ssh-copy-id root@192.168.10.15

    五,ansible命令行模块

    命令格式:ansible <组名> -m <模块> -a <参数列表>

    命令格式:ansible <组名> -m <模块> -a <参数列表>

    1,command 模块
    //在远程主机执行命令,不支持管道,重定向等shell的特性。

    1. ansible-doc -s command #-s 列出指定模块的描述信息和操作动作
    2. ansible 192.168.10.14 -m command -a 'date' #指定 ip 执行 date
    3. ansible webservers -m command -a 'date' #指定组执行 date
    4. ansible webservers -m command -a 'date' #指定组执行 date
    5. ansible dbservers -m command -a 'date'
    6. ansible all -m command -a 'date' #all 代表所有 hosts 主机
    7. ansible all -a 'ls /' #如省略 -m 模块,则默认运行 command 模块

    //常用的参数:
    chdir:在远程主机上运行命令前提前进入目录
    creates:判断指定文件是否存在,如果存在,不执行后面的操作
    removes:判断指定文件是否存在,如果存在,执行后面的操作

    ansible all -m command -a "chdir=/home  ls ./"

    2,shell

    //在远程主机执行命令,相当于调用远程主机的shell进程,然后在该shell下打开一个子shell运行命令(支持管道符号等功能)

    1. ansible-doc -s shell
    2. ansible dbservers -m shell -a 'echo 123456 | passwd --stdin test'
    3. ansible dbservers -m shell -a 'echo $(ifconfig ens33 | awk "NR==2 {print $2}") | cut -d " " -f2'
    4. ansible dbservers -m shell -a 'echo $(ifconfig ens33 | awk "NR==2 {print \$2}")'

    3.cron 模块
    //在远程主机定义任务计划。其中有两种状态(state):present表示添加(可以省略),absent表示移除。

    1. ansible-doc -s cron #按 q 退出
    2. //常用的参数:
    3. minute/hour/day/month/weekday:分////
    4. job:任务计划要执行的命令
    5. name:任务计划的名称
    6. ansible webservers -m cron -a 'minute="*/1" job="/bin/echo helloworld" name="test crontab"'
    7. ansible webservers -a 'crontab -l'
    8. ansible webservers -m cron -a 'name="test crontab" state=absent' #移除计划任务,假如该计划任务没有取名字,name=None即可

    4.user 模块

    1. //用户管理的模块
    2. ansible-doc -s user
    3. //常用的参数:
    4. name:用户名,必选参数
    5. state=present|absent:创建账号或者删除账号,present表示创建,absent表示删除
    6. system=yes|no:是否为系统账号
    7. uid:用户uid
    8. group:用户基本组
    9. shell:默认使用的shell
    10. move_home=yse|no:如果设置的家目录已经存在,是否将已经存在的家目录进行移动
    11. password:用户的密码,建议使用加密后的字符串
    12. comment:用户的注释信息
    13. remove=yes|no:当state=absent时,是否删除用户的家目录
    14. ansible dbservers -m user -a 'name="test01"' #创建用户test01
    15. ansible dbservers -m command -a 'tail /etc/passwd'
    16. ansible dbservers -m user -a 'name="test01" state=absent' #删除用户test01

    5.group 模块

    1. //用户组管理的模块
    2. ansible-doc -s group
    3. ansible dbservers -m group -a 'name=mysql gid=306 system=yes' #创建mysql组
    4. ansible dbservers -a 'tail /etc/group'
    5. ansible dbservers -m user -a 'name=test01 uid=306 system=yes group=mysql' #将test01用户添加到mysql组中
    6. ansible dbservers -a 'tail /etc/passwd'
    7. ansible dbservers -a 'id test01'

    6.copy 模块

    1. //用于复制指定主机文件到远程主机的
    2. ansible-doc -s copy

    //常用的参数:
    dest:指出复制文件的目标及位置,使用绝对路径,如果是源目录,指目标也要是目录,如果目标文件已经存在会覆盖原有的内容
    src:指出源文件的路径,可以使用相对路径或绝对路径,支持直接指定目录,如果源是目录则目标也要是目录
    mode:指出复制时,目标文件的权限 
    owner:指出复制时,目标文件的属主
    group:指出复制时,目标文件的属组
    content:指出复制到目标主机上的内容,不能与src一起使用

    1. nsible dbservers -m copy -a 'src=/etc/fstab dest=/opt/fstab.bak owner=root mode=640'
    2. ansible dbservers -a 'ls -l /opt'
    3. ansible dbservers -a 'cat /opt/fstab.bak'
    4. ansible dbservers -m copy -a 'content="helloworld" dest=/opt/hello.txt' #将helloworld写入/opt/hello.txt文件中
    5. ansible dbservers -a 'cat /opt/hello.txt'

    7.file 模块

    1. //设置文件属性
    2. ansible-doc -s file
    3. ansible dbservers -m file -a 'owner=test01 group=mysql mode=644 path=/opt/fstab.bak' #修改文件的属主属组权限等
    4. ansible dbservers -m file -a 'path=/opt/fstab.link src=/opt/fstab.bak state=link' #设置/opt/fstab.link为/opt/fstab.bak的链接文件
    5. ansible dbservers -m file -a "path=/opt/abc.txt state=touch" #创建一个文件
    6. ansible dbservers -m file -a "path=/opt/abc.txt state=absent" #删除一个文件

    8.hostname 模块

    1. /用于管理远程主机上的主机名
    2. ansible dbservers -m hostname -a "name=mysql01"

    9.ping 模块

    1. //检测远程主机的连通性
    2. ansible all -m ping

    10.yum 模块

    1. //在远程主机上安装与卸载软件包
    2. ansible-doc -s yum
    3. ansible webservers -m yum -a 'name=httpd' #安装服务
    4. ansible webservers -m yum -a 'name=httpd state=absent' #卸载服务

    11.service/systemd 模块

    1. //用于管理远程主机上的管理服务的运行状态
    2. ansible-doc -s service
    3. //常用的参数:
    4. name:被管理的服务名称
    5. state=started|stopped|restarted:动作包含启动关闭或者重启
    6. enabled=yes|no:表示是否设置该服务开机自启
    7. runlevel:如果设定了enabled开机自启去,则要定义在哪些运行目标下自启动
    8. ansible webservers -a 'systemctl status httpd' #查看web服务器httpd运行状态
    9. ansible webservers -m service -a 'enabled=true name=httpd state=started' #启动httpd服务

    12.script 模块

    1. //实现远程批量运行本地的 shell 脚本
    2. ansible-doc -s script
    3. vim test.sh
    4. #!/bin/bash
    5. echo "hello ansible from script" > /opt/script.txt
    6. chmod +x test.sh
    7. ansible webservers -m script -a 'test.sh'
    8. ansible webservers -a 'cat /opt/script.txt'

    13.setup 模块

    1. //facts 组件是用来收集被管理节点信息的,使用 setup 模块可以获取这些信息
    2. ansible-doc -s setup
    3. ansible webservers -m setup #获取mysql组主机的facts信息
    4. ansible dbservers -m setup -a 'filter=*ipv4' #使用filter可以筛选指定的facts信息

    六,主机清单

    //Inventory支持对主机进行分组,每个组内可以定义多个主机,每个主机都可以定义在任何一个或多个主机组内。

    //如果是名称类似的主机,可以使用列表的方式标识各个主机。

    1. vim /etc/ansible/hosts
    2. [webservers]
    3. 192.168.10.14:2222 #冒号后定义远程连接端口,默认是 ssh 的 22 端口
    4. 192.168.10.1[2:5]
    5. [dbservers]
    6. db-[a:f].example.org #支持匹配 a~f

    //inventory 中的变量
    Inventory变量名                  含义
    ansible_host                  ansible连接节点时的IP地址
    ansible_port                  连接对方的端口号,ssh连接时默认为22
    ansible_user                  连接对方主机时使用的主机名。不指定时,将使用执行ansible或ansible-playbook命令的用户
    ansible_password              连接时的用户的ssh密码,仅在未使用密钥对验证的情况下有效
    ansible_ssh_private_key_file  指定密钥认证ssh连接时的私钥文件
    ansible_ssh_common_args       提供给ssh、sftp、scp命令的额外参数
    ansible_become                允许进行权限提升
    ansible_become_method         指定提升权限的方式,例如可使用sudo/su/runas等方式
    ansible_become_user           提升为哪个用户的权限,默认提升为root
    ansible_become_password       提升为指定用户权限时的密码

    1,主机变量

    1. [webservers]
    2. 192.168.10.14 ansible_port=22 ansible_user=root ansible_password=abc1234

    2,组变量

    1. [webservers:vars] #表示为 webservers 组内所有主机定义变量
    2. ansible_user=root
    3. ansible_password=abc1234
    4. [all:vars] #表示为所有组内的所有主机定义变量
    5. ansible_port=22

    3,组嵌套

    1. [nginx]
    2. 192.168.10.20
    3. 192.168.10.21
    4. 192.168.10.22
    5. [apache]
    6. 192.168.10.3[0:3]
    7. [webs:children] #表示为 webs 主机组中包含了 nginx 组和 apache 组内的所有主机
    8. nginx
    9. apache

  • 相关阅读:
    海象赋值表达式减少重复变量
    四种mfc140u.dll丢失的解决方法,有效恢复mfc140u.dll丢失
    Google Earth Engine(GEE)——计算不同美国州的气温折线图和散点图
    事件过滤器
    E: Unable to locate package xxxx
    如何对HDFS进行节点内(磁盘间)数据平衡
    2023数维杯国际数学建模A题B题C题D题思路+模型+代码+完整论文
    Java 实习生(月薪 3k-5k 水平)应具备哪些知识、能力?给学弟学妹们支招
    Flink从入门到放弃—Stream API—常用算子(filter 和 keyBy)
    Shell教程 速览
  • 原文地址:https://blog.csdn.net/qq_61855329/article/details/133814625