问答题
请总结今天所学的ansible模块,以及各个模块的作用!
ping
[if !supportLists]n [endif]ping模块用来检查目标主机是否在线
[if !supportLists]n [endif]例子:ansible webserver -m ping
yum
[if !supportLists]n [endif]yum模块用来在Centos系统上使用yum命令安装软件包
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]name: 指定安装包的名字
[if !supportLists]u [endif]state:latest 安装最新版 present 默认安装 installed 安装 absent 卸载
[if !supportLists]n [endif]例子:ansible webservers -m yum -a ‘name=httpd state=latest’
command
[if !supportLists]n [endif]command模块用来执行系统命令,但是不支持shell下的特殊符号 如:| &&等
[if !supportLists]n [endif]例子:ansible webservers -m command -a ‘echo xx’
shell
[if !supportLists]n [endif]shell模块和command模块使用方法基本一致,但是他可以支持shell的特殊符号,如: | && 等
[if !supportLists]n [endif]例子:ansible webservers -m shell -a “cd /opt/ && touch lixiang”
service
[if !supportLists]n [endif]service模块用来管理centos上的服务的启动、关闭、重启和重载
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]name: 服务名字
[if !supportLists]u [endif]state: started(启动) stopped(停止) restarted(重启) reloaded(重载)
[if !supportLists]u [endif]enabled: 默认是no,将服务设置为开机自启
file
[if !supportLists]n [endif]file模块用来创建文件、目录、链接文件
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]group:定义文件/目录的属组
[if !supportLists]u [endif]mode:定义文件/目录的权限
[if !supportLists]u [endif]owner:定义文件/目录的属主
[if !supportLists]u [endif]path:必选项,定义文件/目录的路径
[if !supportLists]u [endif]recurse:递归的设置文件的属性,只对目录有效
[if !supportLists]u [endif]src:要被链接的源文件的路径,只应用于state=link的情况
[if !supportLists]u [endif]dest:被链接到的路径,只应用于state=link的情况
[if !supportLists]u [endif]state:
[if !supportLists]l [endif]directory:如果目录不存在,创建目录
[if !supportLists]l [endif]file:即使文件不存在,也不会被创建
[if !supportLists]l [endif]link:创建软链接
[if !supportLists]l [endif]hard:创建硬链接
[if !supportLists]l [endif]touch:如果文件不存在,则会创建一个新的文件,如果文件或目录已存在,则更新其最后修改时间
[if !supportLists]l [endif]absent:删除目录、文件或者取消链接文件
user
[if !supportLists]n [endif]user模块用来创建用户
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]home:指定创建的家目录
[if !supportLists]u [endif]groups:指定用户组
[if !supportLists]u [endif]uid:指定UID
[if !supportLists]u [endif]password:设置密码,密码必须是密文
[if !supportLists]u [endif]name:创建的用户名字
[if !supportLists]u [endif]createhome:是否创建家目录(yes/no)
[if !supportLists]u [endif]state: 是创建还是删除。(present,absent),默认是创建
[if !supportLists]u [endif]shell:指定用户登录的shell环境
group
[if !supportLists]n [endif]group用来创建用户组
[if !supportLists]n [endif]选项
[if !supportLists]u [endif] gid:指定用的gid。
[if !supportLists]u [endif]name:指定用户名。
[if !supportLists]u [endif]state:是创建还是删除。(present,absent)
copy
[if !supportLists]n [endif]copy模块用来复制文件至目标主机
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]src:文件在管理主机的据对路径或者相对路径
[if !supportLists]u [endif]dest:将文件复制到目标主机的路径
[if !supportLists]u [endif]bakcup:是否将目标主机的同名文件备份,默认为no
[if !supportLists]u [endif]directory_mode:递归授权
[if !supportLists]n [endif]例子:
ansible webservers -m copy -a ‘src=/root/nginx.sh dest=/opt/’
unarchive
[if !supportLists]n [endif]unarchive模块用来解压文件
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]copy:在解压文件之前,是否先将文件复制到远程主机,默认为yes。若为no,则要求目标主机上压缩包必须存在
[if !supportLists]u [endif]creates:指定一个文件名,当该文件存在时,则解压指令不执行
[if !supportLists]u [endif]dest:远程主机上的一个路径,即文件解压的绝对路径。
[if !supportLists]u [endif]group:解压后的目录或文件的属组
[if !supportLists]u [endif]mode:解压后文件的权限
[if !supportLists]u [endif]src:如果copy为yes,则需要指定压缩文件的源路径
[if !supportLists]u [endif]owner:解压后文件或目录的属主
[if !supportLists]n [endif]例子:
ansible webservers -m unarchive -a ‘src=/root/nginx.tar.gz dest=/opt/ group=www ower=www mode=777 ’
get_url
[if !supportLists]n [endif]get_url模块,该模块主要用于从http、ftp、https服务器上下载文件(类似于wget
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]url: 指定要下载的文件的URL地址
[if !supportLists]n [endif]例子:
ansible webservers -m get_url -a ‘url= http://nginx.org/download/nginx-1.15.7.tar.gz’
synchronize
[if !supportLists]n [endif]使用rsync同步文件,将主控方目录推送到指定节点的目录下,使用此模块需要先安装rsync
[if !supportLists]n [endif]delete: 删除不存在的文件,delete=yes 使两边的内容一样(即以推送方为主),默认no
[if !supportLists]n [endif]src: 要同步到目的地的源主机上的路径; 路径可以是绝对的或相对的。如果路径使用”/”来结尾,则只复制目录里的内容,如果没有使用”/”来结尾,则包含目录在内的整个内容全部复制
[if !supportLists]n [endif]dest:目的地主机上将与源同步的路径; 路径可以是绝对的或相对的。
[if !supportLists]n [endif]dest_port:默认目录主机上的端口 ,默认是22,走的ssh协议。
[if !supportLists]n [endif]mode: push或pull,默认push,一般用于从本机向远程主机上传文件,pull 模式用于从远程主机上取文件。
[if !supportLists]n [endif]rsync_opts:通过传递数组来指定其他rsync选项。
fetch
[if !supportLists]n [endif]fetch模块它用于从远程机器获取文件,并将其本地存储在由主机名组织的文件树中。
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]src:远程系统上要获取的文件。 这必须是一个文件,而不是一个目录。 后续版本可能会支持递归提取。
[if !supportLists]u [endif]dest:保存文件的目录
setup
[if !supportLists]n [endif]setup 模块用于收集远程主机的一些基本信息。
[if !supportLists]n [endif]选项:
[if !supportLists]u [endif]filter参数:用于进行条件过滤。如果设置,仅返回匹配过滤条件的信息。
[if !supportLists]u [endif]常用的过滤关键词:
[if !supportLists]l [endif]ansible_all_ipv4_addresses:仅显示ipv4的信息
[if !supportLists]l [endif]ansible_devices:仅显示磁盘设备信息
[if !supportLists]l [endif]ansible_distribution:显示是什么系统,例:centos,suse等
[if !supportLists]l [endif]ansible_distribution_major_version:显示是系统主版本
[if !supportLists]l [endif]ansible_distribution_version:仅显示系统版本
[if !supportLists]l [endif]ansible_machine:显示系统类型,例:32位,还是64位
[if !supportLists]l [endif]ansible_eth0:仅显示eth0的信息
[if !supportLists]l [endif]ansible_hostname:仅显示主机名
[if !supportLists]l [endif]ansible_kernel:仅显示内核版本
[if !supportLists]l [endif]ansible_lvm:显示lvm相关信息
[if !supportLists]l [endif]ansible_memtotal_mb:显示系统总内存
[if !supportLists]l [endif]ansible_memfree_mb:显示可用系统内存
[if !supportLists]l [endif]ansible_memory_mb:详细显示内存情况
[if !supportLists]l [endif]ansible_swaptotal_mb:显示总的swap内存
[if !supportLists]l [endif]ansible_swapfree_mb:显示swap内存的可用内存
[if !supportLists]l [endif]ansible_mounts:显示系统磁盘挂载情况
[if !supportLists]l [endif]ansible_processor:显示cpu个数(具体显示每个cpu的型号)
[if !supportLists]l [endif]ansible_processor_vcpus:显示cpu个数(只显示总的个数)
[if !supportLists]l [endif]ansible_python_version:显示python版本
[if !supportLists]u [endif]例子:
获取目标主机的ipv4地址
ansible webservers -m setup -a 'filter=ansible_all_ipv4_addresses'