ansible常用模块
- 一、ansible常用模块
- 1、ansible命令用法
- 2、常用模块
一、ansible常用模块
1、ansible命令用法
# ansible 被管理机 -m 模块 -a 模块参数
2、常用模块
- shell模块
作用: 统一执行shell命令
[root@zabbix_server ~]# ansible db -m shell -a 'uptime'[root@zabbix_server ~]# ansible db -m shell -a 'free -m'
- copy模块
作用:推送文件
参数:
src= 源文件
dest= 目的文件
mode= 权限
owner= 属主
group= 属组
[root@zabbix_server ~]# ansible db -m copy -a 'src=/root/file01 dest=/opt'
- fetch模块
作用:拉取文件
参数:
src= 源文件
dest= 目的
[root@zabbix_server ~]# ansible db -m fetch -a 'src=/var/log/messages dest=/opt' [root@zabbix_server ~]# ls /opt/
192.168.140.11 192.168.140.12 192.168.140.13 data.sql
- file模块
作用:管理文件目录
// 修改文件权限
[root@zabbix_server ~]# ansible db -m file -a 'path=/opt/file01 mode=600 owner=nobody group=nobody' // 创建文件
[root@zabbix_server ~]# ansible db -m file -a 'path=/opt/file02 state=touch' // 创建目录
[root@zabbix_server ~]# ansible db -m file -a 'path=/opt/linux state=directory' // 删除文件、目录
[root@zabbix_server ~]# ansible db -m file -a 'path=/opt/file02 state=absent'
- lineinfile
作用:管理文件内容,追加内容
[root@zabbix_server ~]# ansible db -m lineinfile -a 'path=/etc/hosts line="192.168.140.10 zabbix_server.linux.com"'
- cron模块
作用: 管理计划任务
[root@zabbix_server ~]# ansible db -m cron -a 'name=TimeSync minute=*/30 job="/usr/sbin/ntpdate ntp.aliyun.com &> /dev/null" state=present'
- yum模块
作用: 管理RPM软件
[root@zabbix_server ~]# ansible db -m yum -a 'name=vsftpd state=present' state: present, absent, latest
- service模块
作用:管理系统服务
[root@zabbix_server ~]# ansible db -m service -a 'name=vsftpd state=started enabled=yes'
- user/group模块
作用:管理用户、用户组
[root@zabbix_server ~]# ansible db -m group -a 'name=it state=present'
[root@zabbix_server ~]# ansible db -m user -a 'name=test groups=it shell=/sbin/nologin state=present'
- script模块
作用: 执行脚本
[root@zabbix_server ~]# ansible db -m script -a '/root/test.sh'