码迷,mamicode.com
首页 > 其他好文 > 详细

Ansible集群自动化运维操作

时间:2021-01-08 11:23:03      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ping   art   jpg   pat   chdir   grep   运维操作   设置   安装程序   

1、//配置分组主机

 

vim /etc/ansible/hosts

 

内容:
# 方法一 主机+端口+密码

[webservers]
192.168.16.1 ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass="123456"

# 方法二 主机+端口+密码

[webservers]
192.168.16.[2:4] ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass="123456"
192.168.16.1[2:4] ansible_ssh_port=22 ansible_ssh_user=root ansible_ssh_pass="123456"

 

# 方法二 主机+端口+密码

[webservers]
192.168.1.3[1:3]
[webserver:vars]
ansible_ssh_pass="123456"

 

2、执行命令

ansible <pattern_goes_here> -m <module_name> -a <arguments>

ansible 192.168.17.128 -m ping

ansible 192.168.17.128 -m command -a ‘ls /usr/local‘

ansible webservers -m command -a ‘chdir=/data/ ls‘	#先切换到/data/ 目录,再执行“ls”命令

  

3、传输文件到远程机

ansible webservers -m copy -a "src=/home/elk/metricbeat.yml dest=/etc/metricbeat/" > /home/elk/scp-metric-yml.log

  

#覆盖备份,设置权限666

ansible webservers -m copy -a ‘content="I am keerya\n" backup=yes dest=/data/name mode=666‘

  

4、运行shell执行命令

ansible webservers -m shell -a ‘cat /etc/passwd |grep "keer"‘

 

5、文件操作
①创建目录

ansible webservers -m file -a ‘path=/data/app state=directory‘

②创建链接

ansible webservers -m file -a ‘path=/data/bbb.jpg src=aaa.jpg state=link‘

 

③删除文件

ansible webservers -m file -a ‘path=/data/a state=absent‘

  

6、从远程机拉取文件到本地(file,不是目录)

ansible webservers -m fetch -a ‘src=/data/hello.txt dest=/data‘ 

  

7、cron定时任务模块
①添加名为ntphh的定时任务

ansible webservers -m cron -a ‘name="ntphh" minute=*/5 job="/sbin/ntpdate 172.17.0.1 &> /dev/null"‘

②删除定时任务

ansible webservers -m cron -a ‘name="ntphh" minute=*/5 job="/sbin/ntpdate 172.17.0.1 &> /dev/null" state=absent‘

 

 

8、yum安装程序

ansible webservers -m yum -a ‘name=htop state=present‘

  

9、启动service
①开启服务并设置自启动

ansible webservers -m service -a ‘name=nginx state=started enabled=true‘ 

  

②关闭服务

ansible webservers -m service -a ‘name=nginx state=stopped‘

  


Ansible集群自动化运维操作

标签:ping   art   jpg   pat   chdir   grep   运维操作   设置   安装程序   

原文地址:https://www.cnblogs.com/hyh123/p/14243373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!