ansible日常小结

Posted zhaojingyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible日常小结相关的知识,希望对你有一定的参考价值。

一、ansible优化

vim /etc/ansible/ansible.cfg

host_key_checking = False   #不进行验证
log_path = /var/log/ansible.log  #打开日志 

基于ssh

vim /etc/ssh/sshd_config

UseDNS no
#重启sshd 
# systemctl restart sshd

二、常用模块

1、coyp 模块

ansible date -m copy -a ‘src=/etc/selinux/config dest=/etc/selinux/confi

2、fetch模块 从客户端取文件 

ansible date -m fetch -a "src=/var/log/cron dest=/data/"

技术图片

3、shell模块(执行命令、或者执行远程脚本)、也这样代替file模块

ansible date -m shell -a ‘cat /etc/selinux/config‘

技术图片

4、script模块(远程不需要有脚本,控制端有可以)

ansible date -m script -a "/root/scripts/test.sh"

[root@linux-node1 scripts]# cat /root/scripts/test.sh
#!/bin/bash
hostname

技术图片

 

 

 

 

 

 

 

 

 

 

 

 

 

以上是关于ansible日常小结的主要内容,如果未能解决你的问题,请参考以下文章

译文:18个实用的JavaScript代码片段,助你快速处理日常编程任务

Ansible 日常使用技巧 (下)

Ansible 日常使用技巧(上)

ansible plugins简介

日常css技巧小结--背景透明度改变对内容无影响

02-日常管理脚本-ansible 程序断电修复;