Ansible基礎知識
首先我們看下ansible的配置檔案(有刪減):
[root@www ~]# cat /etc/ansible/hosts
Ex 1: Ungrouped hosts, specify before any group headers.
下面是沒有分組的主機,可以寫域名、ip、別名。
www .fuchao.com #域名
alias01 ansible_ssh_port=22 ansible_ssh_host =192.168.1.144 #別名 alias01
192.168.1.144 #ip
192.168.1.145
Ex 2: A collection of hosts belonging to the 'webservers' group
一組主機屬於“網路”組
[webservers] #組名 ,下面的成員可以用域名、ip、別名。
www.fuchao.com #組員域名
192.168.1.144 #組員ip
192.168.1.145
If you have multiple hosts following a pattern you can specify
如果你有多個主機後,您可以指定一個模式
them like this:#他們是這樣的
www[001:006].example.com #支援正則,假如你有一萬臺主機 ,而且很有規則。
www[1:10000].example.com #假如你有一萬臺主機 ,而且很有規則
Ex 3: A collection of database servers in the 'dbservers' group
一個集合的資料庫伺服器“dbservers”組
[dbservers] #組名
db01.intranet.mydomain.net
db02.intranet.mydomain.net
10.25.1.56
10.25.1.57
Here's another example of host ranges, this time there are no
leading 0s:
db-[99:101]-node.example.com
[root@www ~]#
定義主機變數:
為了方便讓playbooks配置使用。
[Hvariables]
host1 http_port=80
host2 http_port=8080
定義組變數:
組變數作用於組的所有成員
[Gvariable]
host1
host2
[Gvariable:vars]
ftp_server = ftp.fuchao.com
web_server = www.fuchao.com
目標匹配:
ansible <pattern_goes_here> -m <module_name> -a <argumrnts>
匹配目標地址或主機地址: 用冒號(:)分隔開。
匹配組 : 用冒號(:)分隔開。
匹配所有主機 : ALL 或者星號(*)
支援正則表達方式匹配主機或者ip
匹配 一個組除某個ip的所有成員 :組名:!ip
匹配兩個組織間的交集:組1:&組2
相關文章
- 基礎知識
- AI 基礎知識AI
- Webpack 基礎知識Web
- Dart基礎知識Dart
- RabbitMQ基礎知識MQ
- webpack基礎知識Web
- javascript基礎知識JavaScript
- ThinkPHP基礎知識PHP
- Laravel基礎知識Laravel
- Redis基礎知識Redis
- Docker基礎知識Docker
- 程式基礎知識
- Envoy基礎知識
- DockerFile基礎知識Docker
- Nginx基礎知識Nginx
- CSS基礎知識CSS
- Java基礎知識Java
- PRML 基礎知識
- BGP基礎知識
- PHP基礎知識PHP
- React基礎知識React
- httpclient基礎知識HTTPclient
- HBase基礎知識
- Jquery基礎知識jQuery
- js基礎知識JS
- PGA基礎知識
- Javascript 基礎知識JavaScript
- ASM基礎知識ASM
- html基礎知識HTML
- 黑客基礎知識黑客
- Mysqli基礎知識MySql
- oracle 基礎知識Oracle
- SEO基礎知識
- CMMI 基礎知識
- qml基礎知識
- Mybatis基礎知識MyBatis
- Vue基礎知識Vue
- Kafka 基礎知識Kafka