- 1、本文档共16页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
云计算 ⾃动化运维——Ansible-doc⽤法及常⽤模块使⽤
上⼀篇介绍了ansible基础知 ,做了ansible.cfg及hosts⽂件配置。
本实验在上⼀个实验的基础上进⾏的。
上⼀篇链接 :
⼀、Ansible-doc⽤法
ansible的模块⾮常只多,Ansible也提供了类似与man功能的help说明⼯具ansible-doc。
1、Ansible-doc命令
ansible-doc -l #显⽰所有可⽤模块
ansible-doc yum #获取yum模块使⽤帮助
2、使⽤ansible-doc命令查看模块⽤法
yum模块
ansible webservers -m yum -a “name=httpd stste=present”
ansible webservers -m yum -a “name=http:// 50/rhel7.3/x86_64/dvd/Packages/vsftpd-3.0.2-
2 1.e17.x86_64.rpm state=present” #在线安装
ansible webservers -m yum -a “name=/mnt/vsftpd-3.0.2-2 1.e17.x86_64.rpm state=present” #本地安装
ansible webservers -m yum -a “name=httpd state=absent” #卸载软件
(1)在hosts主机上安装apache服务
ansible-doc yum
ansible test -m yum -a name=httpd state=present #在线安装
state:状态(present-安装,absent-卸载,latest-安装最新的)
安装时在server2可以看到进程,安装完成,进程结束。
安装时:
安装完毕:
service模块
ansible webservers -m service -a “name=httpd state=started”
ansible webservers -m service -a “name=httpd state=restarted”
ansible webservers -m service -a “name=httpd state=stopped”
(2)开启hosts主机上的apache服务
ansible-doc service
ansible test -m service -a name=httpd state=started #开启httpd服务
ansible test -m service -a name=httpd state=started enabled=yes #开机 ⾃启
在ansible上控制server2主机开启httpd:
server2主机上查看httpd状态 :
在ansible上控制
server2主机的httpd服务开机 ⾃启 :
server2主机上查看httpd状态 :
firewalld模块
(3)在防⽕墙上添加http服务
ansible-doc firewalld
ansible test -m service -a name=firewalld state=started enabled=yes #开启firewalld防⽕墙
ansible test -m firewalld -a service=http permanent=yes state=enabled #在防⽕墙上添加http服务
设置永久添加 :
测试 :
在server2上查看防⽕墙策略:
copy模块
ansible webservers -m copy -a “src=/etc/hosts dest=/tmp/hosts”
copy模块⽤于将本地或远程机器上的⽂件拷贝到远程主机上。
(4)给远程主机apache默认发布 ⽬录下传输默认发布⽂件
ansible test -m copy -a src=apache index.html dest= var www html
uri模块
uri模块主要⽤于发送HTTP协议,通过使⽤uri模块,可以让 ⽬标主机向指定的⽹站发送如Get、Pos
文档评论(0)