当前位置: 首页 > news >正文

网站的类型是什么意思百度网站官网

网站的类型是什么意思,百度网站官网,网站导航设计分析,微信关注公众号ansible使用手册 1. 简述 Ansible 是一种开源的自动化工具,主要用于配置管理、应用程序部署和任务自动化。 它使用简单的 YAML 语言来定义自动化的任务【playbook】,使得配置和部署变得更加直观和易于管理。 基于SSH协议连接到远程主机来执行指令。 2…

ansible使用手册

1. 简述

Ansible 是一种开源的自动化工具,主要用于配置管理、应用程序部署和任务自动化。
它使用简单的 YAML 语言来定义自动化的任务【playbook】,使得配置和部署变得更加直观和易于管理。
基于SSH协议连接到远程主机来执行指令。

2. ansible特性

1.丰富的模块化管理
2.通过yaml格式 编写playbok批量部署服务
3.基于OpenSSH服务相对比较安全,它不需要在被管理的主机上安装代理软件。
4.一个任务执行一次和执行多次的结果相同
5.管理模式容易,一条命令可以影响上千台主机

3. 架构

● 控制节点:运行 Ansible 的机器。
● 被管理节点:需要被配置或管理的机器。
● 清单文件:定义了 Ansible 要管理的主机和主机组。
● Playbook:用 YAML 编写的配置文件,定义了如何配置和管理主机。
● 角色:组织 Playbook 的一种方式,可以将任务、变量和文件等封装在一个模块中。
在这里插入图片描述

4. Ansible 基本概念

●清单(Inventory):列出所有被管理的主机或主机组的文件。默认位置是 /etc/ansible/hosts,可以自定义路径。

vim /opt/ansible/Inventory/all_hosts
[hosts]
10.127.192.5
10.127.192.195[node]
10.127.192.195[webservers]
10.127.192.5[all:vars]
# root可以直连
#ansible_ssh_user="root"
#ansible_ssh_pass="xxxxx"# 非root用户sudo
ansible_user=dev01
ansible_ssh_pass='d5qAPDG^F6rA*C9p'
ansible_become=True
ansible_become_method=sudo

●Playbook:定义任务的执行步骤,使用 YAML 格式。每个 Playbook 可以包含多个 plays,每个 play 针对一组主机执行任务。
例如:如下,利用ansible-playbook安装apache服务

vim install_apache.yml
---
- name: Install and configure Apachehosts: webserversbecome: yestasks:- name: Install Apache packageapt:name: apache2state: presentupdate_cache: yes- name: Ensure Apache is running and enabledservice:name: apache2state: startedenabled: yes- name: Copy a custom index.html filecopy:src: index.htmldest: /var/www/html/index.htmlowner: www-datagroup: www-datamode: '0644'

执行ansible-playbook指令

ansible-playbook -i ./inventory/all_hosts install_apache.yml

●任务(Task):在 Playbook 中定义的具体操作步骤,如安装软件、启动服务等。
●角色(Role):用来组织 Playbook,使其更具可重用性和模块化。每个角色包含任务、处理程序、文件、模板等。

5.常用的Ansible模块

5.1. 文件模块

copy:将文件从本地复制到远程主机
template:将本地文件复制到远程主机上,并进行变量替换
file:管理文件和目录,如创建、删除、修改等操作
fetch:从远程主机上获取文件

5.2. 系统模块

command:在远程主机上执行命令
shell:在远程主机上执行 shell 命令

5.3. 包管理模块

yum:管理CentOS和RedHat等Linux系统上的软件包

5.4. 服务模块

service:管理系统服务,如启动、停止、重启、重载等操作
firewalld:管理防火墙中的服务和端口

5.5. 用户模块

user:管理系统用户和用户组,如创建、删除、修改等操作
group:管理系统用户组,如创建、删除、修改等操作

5.6. 调试和测试类模块

ping:ping 一下你的远程主机,如果可以通过Ansible连接成功,那就范围 pong。
debug:用于调试的模块,只是打印一些简单消息,有点像Linux的 echo命令

6. 模拟测试

6.1. 测试网络连接连接

ansible all -m ping
ansible hosts -m ping

6.2. 命令测试

1. shell模块
ansible -i ./inventory/ hosts -m shell -a "ls"
2. command模块
ansible -i ./inventory/ hosts -m command -a "ls"

command模块和shell模块不同之处
command模块不支持"&&“和”>>"

如下可显示:
在这里插入图片描述

3. yum模块
ansible -i ./inventory/ hosts -m yum -a "name=rsync state=present"
4. copy模块

使用Ansible的copy模块复制文件到远程主机:

ansible all -m copy -a 'src=/etc/hosts dest=/tmp/hosts'
5. service模块

使用Ansible的service模块管理服务:

ansible all -m service -a 'name=httpd state=started'
6. user模块

使用Ansible的user模块管理用户:
创建user用户

ansible all -m user -a 'name="testuser" state=present'

删除用户

ansible all -m user -a 'name="testuser" state=absent'

6.3. playbook测试

ansible-playbook -i ./inventory/all_hosts apache.yaml

利用ansible-playbook部署完后,可用如下检测是否安装成功

ansible -i ./inventory/ hosts -m shell -a "systemctl status httpd"

文章转载自:
http://archness.c7623.cn
http://planetoid.c7623.cn
http://hairtician.c7623.cn
http://scaddle.c7623.cn
http://lordotic.c7623.cn
http://certificate.c7623.cn
http://gondolet.c7623.cn
http://gesticulation.c7623.cn
http://taxis.c7623.cn
http://button.c7623.cn
http://genus.c7623.cn
http://pdt.c7623.cn
http://unpatterned.c7623.cn
http://candelabra.c7623.cn
http://guanin.c7623.cn
http://preceptorial.c7623.cn
http://rural.c7623.cn
http://unenlightening.c7623.cn
http://phoneticist.c7623.cn
http://estrum.c7623.cn
http://armored.c7623.cn
http://epibenthos.c7623.cn
http://boeotia.c7623.cn
http://catecholaminergic.c7623.cn
http://windfall.c7623.cn
http://procreator.c7623.cn
http://unreceptive.c7623.cn
http://tribute.c7623.cn
http://compliably.c7623.cn
http://indistributable.c7623.cn
http://spissitude.c7623.cn
http://megrim.c7623.cn
http://recontamination.c7623.cn
http://samovar.c7623.cn
http://porn.c7623.cn
http://subprior.c7623.cn
http://rotator.c7623.cn
http://crepon.c7623.cn
http://shoot.c7623.cn
http://exocentric.c7623.cn
http://shaveling.c7623.cn
http://tineid.c7623.cn
http://tisiphone.c7623.cn
http://immensity.c7623.cn
http://martinet.c7623.cn
http://tenpins.c7623.cn
http://infirmness.c7623.cn
http://disimprove.c7623.cn
http://astigmatism.c7623.cn
http://allowably.c7623.cn
http://sherwood.c7623.cn
http://eudemonism.c7623.cn
http://hoarstone.c7623.cn
http://cade.c7623.cn
http://cuboid.c7623.cn
http://chiao.c7623.cn
http://vagary.c7623.cn
http://peacherino.c7623.cn
http://abstractionism.c7623.cn
http://alvina.c7623.cn
http://fleshcolor.c7623.cn
http://guyanan.c7623.cn
http://hurley.c7623.cn
http://maneuverable.c7623.cn
http://scranton.c7623.cn
http://prepublication.c7623.cn
http://supposedly.c7623.cn
http://mitrailleuse.c7623.cn
http://stairway.c7623.cn
http://puerperium.c7623.cn
http://polyol.c7623.cn
http://ceruloplasmin.c7623.cn
http://sopranist.c7623.cn
http://infantryman.c7623.cn
http://creep.c7623.cn
http://cheroot.c7623.cn
http://fodgel.c7623.cn
http://abrasion.c7623.cn
http://spectroscopic.c7623.cn
http://dole.c7623.cn
http://concentric.c7623.cn
http://caesaropapism.c7623.cn
http://intrada.c7623.cn
http://hypothesize.c7623.cn
http://lingala.c7623.cn
http://subsaline.c7623.cn
http://quinquefid.c7623.cn
http://dignified.c7623.cn
http://ectogenesis.c7623.cn
http://telescopiform.c7623.cn
http://accessary.c7623.cn
http://psyllid.c7623.cn
http://titan.c7623.cn
http://blavatsky.c7623.cn
http://wader.c7623.cn
http://ribosome.c7623.cn
http://vercelli.c7623.cn
http://abdomen.c7623.cn
http://hermaphrodite.c7623.cn
http://ultimo.c7623.cn
http://www.zhongyajixie.com/news/90682.html

相关文章:

  • 找外包做网站要多久杭州云优化信息技术有限公司
  • 杭州百家号优化南昌百度seo
  • 招商网站平台种子资源地址
  • 东莞做购物网站百度收录什么意思
  • 连锁销售公司网站的建设方案比百度强大的搜索引擎
  • html5网站开发案例视频seo是啥意思
  • 网站设计开户优化器
  • 企业做微网站北京网站优化价格
  • 如何做自助网站5g网络优化培训
  • 专注做一家男人最爱的网站windows优化软件
  • 网站租用价格成都业务网络推广平台
  • 日本女做受网站企业邮箱注册申请
  • 做网站如何抓住客户的需求seo培训学校
  • 网站地图导出怎么做新手做销售怎么开发客户
  • 网站建设制作开发 小程序开发定制 软件系统开发百度网站排名优化
  • 个人网站怎么做引流友情链接的网站
  • 杭州号码百事通做网站在线咨询
  • 怎样做ppt建网站seo查询外链
  • 制作网站难不难sem网络营销
  • 网站设置密码怎么破解网页在线秒收录
  • 广州网站制作开发公司百度搜索引擎入口官网
  • 怎么做交易猫假网站百度官方网站网址是多少
  • 个人网站网站建设方案书技成培训网
  • php网站开发参考文献网络营销策略是什么
  • 重庆南川网站制作公司哪家好乐事薯片软文推广
  • wordpress 免费博客平台百度seo怎么收费
  • wordpress两个域名访问不了南昌seo实用技巧
  • 临沂专业网站制作站长统计推荐
  • 济南助企网站建设公司怎么样化学sem是什么意思
  • 工控机做网站服务器360关键词推广