04Ansible点对点模式

Ansible点对点模式

在ansible中快速执行的单条命令,并且不需要保存的命令,可以使用点对点模式。对于复杂的命令则使用 playbook。

如果不知道该怎么如何使用某个模块,可以使用ansible-doc xxxx查询模块的用法

shell模块

帮助:ansible-doc shell

获取主机名

[ ~]# ansible test -m shell -a ‘hostname‘ -o

部署apache

[ ~]# ansible test -m shell -a ‘yum -y install httpd‘ -o

指定执行的并发线程数

[ ~]# ansible test -m shell -a ‘hostname‘ -o -f 2

-f 2 指定线程数

Ansible一次命令执行并发的线程数,默认是5

查询系统负载

[ ~]# ansible test -m shell -a ‘uptime‘ -o

copy复制模块

帮助:ansible-doc copy

[ ~]# ansible test -m copy -a ‘src=/etc/hosts dest=/tmp/abc.txt owner=root group=bin mode=777‘

使用backup=yes:如果文件已经存在,可以设置进行备份,否则会直接覆盖。

[ ~]# ansible test -m copy -a ‘src=/etc/hosts dest=/tmp/abc.txt owner=root group=bin mode=777 backup=yes‘

user用户模块

帮助:ansible-doc user

创建用户

[ ~]# ansible test -m user -a ‘name=mike state=present‘

删除用户

[ ~]# ansible test -m user -a ‘name=mike state=absent‘

修改密码

# 1.生成加密密码
[ ~]# echo ‘777777‘ | openssl passwd -1 -stdin
$1$1FSlyMyq$jzU/9Z/bY0WfpLj29ZjO5/

# 2.修改密码
[ ~]# ansible test -m user -a ‘name=mike password="$1$1FSlyMyq$jzU/9Z/bY0WfpLj29ZjO5/"‘

修改shell

[ ~]# ansible test -m user -a ‘name=mike shell=/sbin/noglogin append=yes‘

yum软件包模块

帮助:ansible-doc yum

升级所有包

[ ~]# ansible test -m yum -a ‘name="*" state=latest‘

安装apache

[ ~]# ansible test -m yum -a ‘name="httpd" state=latest‘

service服务模块

帮助:ansible-doc service

启动服务

[ ~]# ansible test -m service -a ‘name=httpd state=started‘

停止服务

[ ~]# ansible test -m service -a ‘name=httpd state=started enabled=yes‘

设置开机启动

[ ~]# ansible test -m service -a ‘name=httpd state=stopped‘

重启服务

[ ~]# ansible test -m service -a ‘name=httpd state=restarted‘

开机禁止启动

[ ~]# ansible test -m service -a ‘name=httpd state=started enabled=no‘

file文件模块

帮助:ansible-doc file

创建文件

[ ~]# ansible test -m file -a ‘path=/tmp/88.txt mode=777 state=touch‘

创建文件夹

[ ~]# ansible test -m file -a ‘path=/tmp/99 mode=777 state=directory‘

删除文件

[ ~]# ansible test -m file -a ‘path=/tmp/88.txt state=absent‘

setup收集模块

帮助:ansible-doc setup

查询所有信息

[ ~]# ansible test -m setup

查询指定信息

[ ~]# ansible test -m setup -a ‘filter=ansible_processor_cores‘

相关推荐