Ansible基本命令

Ansible安装完成之后就自带很多命令,其中较常用的有7个:

  • ansible
  • ansible-doc
  • ansible-galaxy
  • ansible-init
  • ansible-playbook
  • ansible-pull
  • ansible-vault

ansible

ansible -h
Usage: ansible <host-pattern> [options]

  对本机执行一个命令:

ansible 127.0.0.1 -a "date"127.0.0.1 | SUCCESS | rc=0 >>
Fri Apr  6 18:45:01 CST 2018

  在远程主机上执行命令;

ansible test -a "date"172.16.1.10 | UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Warning: Permanently added '172.16.1.10' (ECDSA) to the list of known hosts.\r\nPermission denied (publickey,password).\r\n", "unreachable": true
}

由上可知:在远程主机上执行命令的时候没有权限(密码不知道),所以我们可以在上述命令的基础上加上-k参数:

ansible test -a "date" -kSSH password: 
172.16.1.10 | SUCCESS | rc=0 >>
Fri Apr  6 18:56:52 CST 2018

  ansible命令的常用参数;

-a MODULE_ARGS, --args=MODULE_ARGS module arguments  命令行参数
--ask-vault-pass      ask for vault password
-B SECONDS, --background=SECONDS
-C, --check           don't make any changes; instead, try to predict some
-D, --diff            when changing (small) files and templates, show the
-e EXTRA_VARS, --extra-vars=EXTRA_VARS
-f FORKS, --forks=FORKS     # 指定执行任务时并发数量
-i INVENTORY, --inventory=INVENTORY, --inventory-file=INVENTORY  #指定库存主机文件的路径,默认为/etc/ansible/hosts                
-l SUBSET, --limit=SUBSET
--list-hosts          outputs a list of matching hosts; does not execute
-m MODULE_NAME, --module-name=MODULE_NAME module name to execute (default=command)  # 执行模块的名称,默认使用command模块
-M MODULE_PATH, --module-path=MODULE_PATH
-u REMOTE_USER, --user=REMOTE_USER      # 执行用户,使用这个远程用户而不是当前用户
-U SUDO_USER, --sudo-user=SUDO_USER     # sudo到哪个用户,默认为root
-k, --ask-pass  ask for connection password     # 登陆密码,提示输入ssh密码
-K, --ask-become-pass       # 提示密码使用sudo -s --sudo sudo运行
--new-vault-id=NEW_VAULT_ID the new vault identity to use for rekey
--new-vault-password-file=NEW_VAULT_PASSWORD_FILES new vault password file for rekey
-o, --one-line        condense output
-P POLL_INTERVAL, --poll=POLL_INTERVAL set the poll interval if using -B (default=15)
--syntax-check        perform a syntax check on the playbook, but do not execute it
-t TREE, --tree=TREE  log output to this directory
--vault-id=VAULT_IDS  the vault identity to use
--vault-password-file=VAULT_PASSWORD_FILES vault password file
-v, --verbose         verbose mode (-vvv for more, -vvvv to enable connection debugging)
--version             show program's version number and exit
--private-key=PRIVATE_KEY_FILE, --key-file=PRIVATE_KEY_FILE
-c CONNECTION, --connection=CONNECTION              
-T TIMEOUT, --timeout=TIMEOUT               
--ssh-common-args=SSH_COMMON_ARGS          
--sftp-extra-args=SFTP_EXTRA_ARGS                    
--scp-extra-args=SCP_EXTRA_ARGS       
--ssh-extra-args=SSH_EXTRA_ARGS
-s, --sudo          run operations with sudo (nopasswd) (deprecated, use become)  
-S, --su            run operations with su (deprecated, use become)
-R SU_USER, --su-user=SU_USER
-b, --become        run operations with become (does not imply password prompting)
--become-method=BECOME_METHOD privilege escalation method to use (default=sudo), valid choices: [ sudo | su | pbrun | pfexec | doas | dzdo | ksu | runas | pmrun ]
--become-user=BECOME_USER run operations as this user (default=root)
--ask-sudo-pass     ask for sudo password (deprecated, use become)
--ask-su-pass       ask for su password (deprecated, use become)

ansible-doc

ansible-doc -h
Usage: ansible-doc [-l|-s] [options] [-t <plugin type] [plugin]plugin documentation toolOptions:
-a, --all             **For internal testing only** Show documentation forall plugins.
-h, --help            show this help message and exit
-l, --list            List available plugins
-M MODULE_PATH, --module-path=MODULE_PATHprepend colon-separated path(s) to module library(default=[u'/root/.ansible/plugins/modules',u'/usr/share/ansible/plugins/modules'])
-s, --snippet         Show playbook snippet for specified plugin(s)
-t TYPE, --type=TYPE  Choose which plugin type (defaults to "module")
-v, --verbose         verbose mode (-vvv for more, -vvvv to enableconnection debugging)
--version             show program's version number and exitSee man pages for Ansible CLI options or website for tutorials
https://docs.ansible.com

ansible-doc 相当于一个帮助文档,结合-s参数

ansible-doc -s file- name: Sets attributes of files
file:attributes:            # Attributes the file or directory should have. To get supported flags look at the man page for `chattr' on thetarget system. This string should contain the attributes in the same order as theone displayed by `lsattr'.follow:                # This flag indicates that filesystem links, if they exist, should be followed.force:                 # force the creation of the symlinks in two cases: the source file does not exist (but will appear later); thedestination exists and is a file (so, we need to unlink the "path" file and createsymlink to the "src" file in place of it).group:                 # Name of the group that should own the file/directory, as would be fed to `chown'.mode:                  # Mode the file or directory should be. For those used to `/usr/bin/chmod' remember that modes are actually octalnumbers (like 0644). Leaving off the leading zero will likely have unexpectedresults. As of version 1.8, the mode may be specified as a symbolic mode (forexample, `u+rwx' or `u=rw,g=r,o=r').owner:                 # Name of the user that should own the file/directory, as would be fed to `chown'.path:                  # (required) path to the file being managed.  Aliases: `dest', `name'recurse:               # recursively set the specified file attributes (applies only to state=directory)selevel:               # Level part of the SELinux file context. This is the MLS/MCS attribute, sometimes known as the `range'. `_default'feature works as for `seuser'.serole:                # Role part of SELinux file context, `_default' feature works as for `seuser'.setype:                # Type part of SELinux file context, `_default' feature works as for `seuser'.seuser:                # User part of SELinux file context. Will default to system policy, if applicable. If set to `_default', it will usethe `user' portion of the policy if available.src:                   # path of the file to link to (applies only to `state=link'). Will accept absolute, relative and nonexisting paths.Relative paths are not expanded.state:                 # If `directory', all immediate subdirectories will be created if they do not exist, since 1.7 they will be createdwith the supplied permissions. If `file', the file will NOT be created if it doesnot exist, see the [copy] or [template] module if you want that behavior.  If`link', the symbolic link will be created or changed. Use `hard' for hardlinks. If`absent', directories will be recursively deleted, and files or symlinks will beunlinked. Note that `absent' will not cause `file' to fail if the `path' does notexist as the state did not change. If `touch' (new in 1.4), an empty file will becreated if the `path' does not exist, while an existing file or directory willreceive updated file access and modification times (similar to the way `touch`works from the command line).unsafe_writes:         # Normally this module uses atomic operations to prevent data corruption or inconsistent reads from the targetfiles, sometimes systems are configured or just broken in ways that prevent this.One example are docker mounted files, they cannot be updated atomically and canonly be done in an unsafe manner. This boolean option allows ansible to fall backto unsafe methods of updating files for those cases in which you do not have anyother choice. Be aware that this is subject to race conditions and can lead to datacorruption.

  ansible新版已经添加了操作docker的相关模块:

ansible-doc -l |grep dockerdocker                                    manage docker containers                                                                           
docker_container                          manage docker containers                                                                           
docker_image                              Manage docker images.                                                                              
docker_image_facts                        Inspect docker images                                                                              
docker_login                              Log into a Docker registry.                                                                        
docker_network                            Manage Docker networks                                                                             
docker_secret                             Manage docker secrets.                                                                             
docker_service                            Manage docker services and containers.                                                             
docker_volume                             Manage Docker volumes 

ansible-galaxy

  从官网下载其他第三方模块和插件。

ansible-galaxy install username.rolename

ansible-init

  ansible-init是对Ansible的playbook进行语法检查的一个工具。

ansible-playbook

  该命令时使用最多的命令,其通过读取playbook文件后,执行相应的动作。

ansible-pull

  ansible的另一种模式-- pull模式。跟平常使用的push模式刚好相反,适用于以下场景;

  • 操作巨大数量的主机,即使使用非常高的线程还是需要很长时间;
  • 在没有网络连接的主机上运行Ansible时;

ansible-vault

  ansible-vault主要应用于配置文件中含有敏感信息的时候,不希望别人看到,这时使用这个命令可以将某些配置文件加密,属于高级用法。主要对于playbook里涉及到配置密码或者其他敏感信息时,可以使用该命令加密。在使用类似cat等查看命令查看加密后的配置文件时,需要输入密码才可以查看。这种playbook执行时,需要加上--ask-vault-pass参数,同样需要输入密码之后才能执行。

转载于:https://www.cnblogs.com/jie-fang/p/10293171.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/249789.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java高并发高性能分布式框架从无到有微服务架构设计

Java高并发高性能分布式框架从无到有微服务架构设计

Makefile中几种赋值

延时变量&#xff0c;只有被使用时才展开定义 : 立即变量&#xff0c;定义时的赋值立即有效 ? 条件变量&#xff0c;当变量为空时才赋值 追加赋值转载于:https://www.cnblogs.com/smzd/p/10695962.html

线程的基本协作和生产者消费者

协作基础&#xff08;wait/notify&#xff09; Java的根父类是Object&#xff0c;Java在Object类而非Thread类中&#xff0c;定义了一些线程协作的基本方法&#xff0c;使得每个对象都可以调用这些方法&#xff0c;这些方法有两类&#xff0c;一类是wait&#xff0c;另一类是no…

L1-016 查验身份证

L1-016 查验身份证 &#xff08;15 分&#xff09;一个合法的身份证号码由17位地区、日期编号和顺序编号加1位校验码组成。校验码的计算规则如下&#xff1a; 首先对前17位数字加权求和&#xff0c;权重分配为&#xff1a;{7&#xff0c;9&#xff0c;10&#xff0c;5&#xff…

什么是高并发,如何避免高并发

之前我将高并发的解决方法误认为是线程或者是队列可以解决&#xff0c;因为高并发的时候是有很多用户在访问&#xff0c;导致出现系统数据不正确、丢失数据现象&#xff0c;所以想到 的是用队列解决&#xff0c;其实队列解决的方式也可以处理&#xff0c;比如我们在竞拍商品、转…

.sync 修饰符的理解

正常 子组件&#xff1a; this.$emit(update:title, newTitle)父组件&#xff1a; <text-documentv-bind:title"doc.title"v-on:update:title"doc.title $event" ></text-document>简洁&#xff1a; <text-document v-bind:title.sync&quo…

L1-025 正整数A+B

题的目标很简单&#xff0c;就是求两个正整数A和B的和&#xff0c;其中A和B都在区间[1,1000]。稍微有点麻烦的是&#xff0c;输入并不保证是两个正整数。 输入格式&#xff1a; 输入在一行给出A和B&#xff0c;其间以空格分开。问题是A和B不一定是满足要求的正整数&#xff0c;…

到底多大才算高并发?

一、什么是高并发 定义&#xff1a; 高并发(High Concurrency)是使用技术手段使系统可以并行处理很多请求。关键指标&#xff1a; -响应时间(Response Time) -吞吐量(Throughput) -每秒查询率QPS(Query Per Second) -每秒事务处理量TPS(Transaction Per Second) -同时在…

eclipse安装maven插件

1、在线安装插件 a.打开eclipse&#xff0c;菜单“Help”-“Install New Software...” b.在Work with 地址栏输入&#xff1a;http://download.eclipse.org/releases/对应eclipse版本名称 c.在filter框中输入maven d.选择“Collaboration”-“m2e - Maven Integration for Ecl…

VS2017 网站打包发布生成的文件中包含.pdb文件,解决办法

右键点击项目属性&#xff0c;选择打包/发布 Web&#xff0c;勾选 排除生成的调试符号&#xff1a; 再次发布&#xff0c;就不会再生成.pdb文件 转载于:https://www.cnblogs.com/JoinLet/p/10297254.html

java分布式学习路线

先理解为什么需要分布式&#xff0c;因为服务器处理的能力需要提升&#xff0c;这里有两个方面&#xff0c;第一是纵向 也就是增加cpu的能力&#xff0c;或者加内存&#xff1b;另一个方向就是 横向 &#xff0c;就是分布式。将本来一台计算机的压力分给多太计算机&#xff0c;…

深入Nginx之《常用参数配置技巧》

常见参配置实战技巧 下面会讲解实战中应该怎么配置更为合理。 1.user 默认是nobody&#xff0c;如果使用nobody&#xff0c;Nginx在运行过程中会出现很多操作没有权限&#xff0c;比如写硬盘。一般都是用低于root级别的用户&#xff0c;比如www&#xff0c;并且可以在linux下设…

transform、transition 动画效果

transform 转换&#xff0c;变形 origin 定义旋转基点&#xff08;left top center right bottom 坐标值&#xff09; transform-origin: 50px 50px; transform-origin: left;。 rotate 旋转 transform:rotate(50deg) 旋转角度可以为负数&#xff0c;需要先定义…

eslint 规则

"off"或0- 关闭规则 "warn"或1- 将规则作为警告打开&#xff08;不影响退出代码&#xff09; "error"或2- 将规则作为错误打开&#xff08;触发时退出代码为1&#xff09;转载于:https://www.cnblogs.com/smzd/p/10844161.html

分布式学习路线

由于分布式系统所涉及到的领域众多&#xff0c;知识庞杂&#xff0c;很多新人在最初往往找不到头绪&#xff0c;不知道从何处下手来一步步学习分布式架构。 本文试图通过一个最简单的、常用的分布式系统&#xff0c;来阐述分布式系统中的一些基本问题。 负载均衡分布式缓存分…

洛谷p2704 炮兵阵地

典型的状态压缩题&#xff0c;只是要定义dp[i][j][k]&#xff0c; #include<bits/stdc.h>using namespace std;int n,m,state[1<<10],tot0;int dp[110][66][66],sum[1<<10],mp[110];int getsum(int x){ int cnt0; while(x){ if(x&1) cnt; …

Flask 框架app = Flask(__name__) 解析

1 #!/usr/local/bin/python2 # codingutf-83 4 from flask import Flask5 app Flask(__name__)6 7 app.route(/)8 def hello_world():9 return Hello World! 10 11 if __name__ __main__: 12 app.run(host0.0.0.0,port9000) 第4行&#xff0c;引入Flask类&#x…

发布订阅

发布订阅 在软件架构中&#xff0c;发布订阅是一种消息范式&#xff0c;消息的发送者&#xff08;称为发布者&#xff09;不会将消息直接发送给特定的接收者&#xff08;称为订阅者&#xff09;。而是将发布的消息分为不同的类别&#xff0c;无需了解哪些订阅者&#xff08;如果…

ps 命令

ps 为我们提供了进程的一次性的查看&#xff0c;它所提供的查看结果并不动态连续的&#xff1b;如果想对进程时间监控&#xff0c;应该用 top 工具。kill 命令用于杀死进程。linux上进程有5种状态: 1. 运行(正在运行或在运行队列中等待) 2. 中断(休眠中, 受阻, 在等待某个条件的…

python练习题-day8

1、有如下文件&#xff0c;a1.txt&#xff0c;里面的内容为&#xff1a; 老男孩是最好的培训机构&#xff0c; 全心全意为学生服务&#xff0c; 只为学生未来&#xff0c;不为牟利。 我说的都是真的。哈哈 分别完成以下的功能&#xff1a; a,将原文件全部读出来并打印。 with o…