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

面试题10

时间:2019-03-15 17:12:21      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:ansible   执行   一个   cron   Owner   复制   权限   file   服务   

1、ansible使用copy模块来将/opt/aa.txt复制到/home/jack中

ansible web02 -m copy -a ‘src=/opt/aa.txt dest=/home/jack ‘

2、使用file模块,来定义/home/jack/aa.txt的权限为777,归属为所有者是jack,所属组为jack

ansible web02 -m file -a "mode=777 owner=jack group=jack path=/home/jack/aa.txt"

3、使用yum模块,安装httpd服务

ansible web02 -m yum -a "name=httpd"

4、使用cron模块,定义一个任务,每周五的14点30分执行备份/var

ansible web02 -m cron -a ‘minute="30" hour="14" weekday="5" job="/usr/bin/tar czf /opt/var.tar.gz /var"‘

5、使用user模块,创建用户student,让其是系统用户,属组为root,uid为2000

ansible web02 -m user -a "name=student system=yes group=root uid=2000"

面试题10

标签:ansible   执行   一个   cron   Owner   复制   权限   file   服务   

原文地址:https://blog.51cto.com/14158288/2363689

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