ansible常用命令

  1. 1. -v, verbose 详细模式,如果命令执行成功,输出详细的结果(-vv vvv -vvvv)
  2. 2. -i, inventory=PATH 指定host文件的路径,默认是在/etc/ansible/hosts(生产环境经常用到)
  3. 3. -f NUM, forks=NUNUM 接一个整数,默认是5,指定fork开启同步进程的个数。
  4. 4. -m NAME, module-name=NAME 指定使用的module名称,默认是command
  5. 5. -a, MODULE_ARGS 指定module模块的参数
  6. 6. -k, -ask-pass 提示输入ssh的密码,而不是使用基于ssh的密钥认证
  7. 7. -sudo 指定使用sudo获得root权限(生产环境经常用到)
  8. 8. -K, -ask-sudo-pass 提示输入sudo密码,与sudo一起使用 (生产环境经常用到)
  9. 9. -u USERNAME,-user=USERNAME 指定移动端的执行用户
  10. 10. -C, -check 测试此命令执行不会改变什么内容,不会真正的去执行

Ansible-playbook 基本命令

  1. 1. ansible-playbook // 查看帮助
  2. 2. ansible-playbook a.yml --syntax-check //检查yaml文件的语法是否正确
  3. 3. ansible-playbook a.yml --list-task //检查tasks任务
  4. 4. ansible-playbook a.yml --list-hosts //检查生效的主机
  5. 5. ansible-playbook a.yml --start-at-task='Copy Nginx.conf' //指定从某个task开始运行
  6. 6. ansible-playbook --syntax-check -e "hosts=c7" xx.yml -s -k // 语法检查
  7. 7. ansible-playbook -i hostslist ***.yml --limit 192.168.0.1 // 排除单个主机
  8. 8. ansible-playbook -i hostslist ***.yml --limit @failed.txt // 排除多个主机
    9. ansible-playbook update-stg.yml -f 10 -s -k // 启用10个并行进程数执行

ansible-doc常用命令

  1. 1. ansible-doc -l #列出所有ansible支持的模块,重要,请自行记住
  2. 2. ansible-doc -s copy # 获取模块简要使用说明(如需详细去掉-s)
  3. src= #源文件
  4. force= #是否覆盖
  5. dest= #目标文件

ansible-galaxy init /roles/tomcat-install 创建roles目录结构

Ansible 基本概念

inventory 主机源

  • playbooks 一组运行任务的命令集合
  • roles 角色
  • tasks 运行任务列表
  • handlers 运行任务后的触发动作
  • variables 定义的变量

inventor 目录结构

    • inventories/
      ├── group_vars
      │ └── all
      │ └── kubeadm.yml
      └── k8s-hosts

roles目录结构

  1. tomcat-install/
  2. ├── defaults
  3.    └── main.yml
  4. ├── files
  5.    └── jdk-8u241-linux-x64.tar.gz
  6. ├── handlers
  7.    └── main.yml
  8. ├── meta
  9.    └── main.yml
  10. ├── README.md
  11. ├── tasks
  12.    ├── basics.yml
  13.    ├── copy.yml
  14.    ├── main.yml
  15.    └── tomcat.yml
  16. ├── templates
  17.    ├── jdk_path
  18.    ├── server.xml.j2
  19.    └── tomcat
  20. ├── tests
  21.    ├── inventory
  22.    └── test.yml
  23. └── vars
  24. └── main.yml
  25.  
  26. tomcat-install角色名称
  27. files文件及软件目录
  28. vars定义变量
  29. templates模板文件 配置文件替换以.j2结尾
  30. task剧本任务
  31. README.md 说明文档
  32. handlers执行触发动作(类似puppet消息通知)
  33. tests文本
  34. meta 目录表示 role角色的属性

ansible剧本常用参数:

registe:name (命令传参,或字集传参)

tags使用标记执行的模块的,可以选择单独执行某一个模块

template 和copy的模块的功能一样 ,都是向远程主机上传送文件的,可以copy是送的是原封不动的文件,template 可以将文件中的变量渲染出来 示例template: src=/etc/redis.conf dest=/etc/redis.conf

handlers执行操作 类似于puppet消息通知当触发时 执行操作 比如重启等  notify:handlersname 调用handlers操作

whene判断 可以判断数值 可以判断命令是否失败或成功 true或fales failed

item 循环 写法:user: name={{item}}  with_items: - 111

vars: 定义变量写法:- var1:111

facts:获取回传文件

ignore_errors:True忽略命令返回结果 

tomcat-install剧本roles编写

创建执行文件

installtomcat.yml

创建rosle说明文件

  1. 用于批量安装jdktomcat服务并启动
  2. 自定义jdk版本号 例如jdk_version: 241
  3. 由于jdk1.8版本以后 下载需要验证信息等 需手动下载安装包并放置tomcat-install roselfiles
  4. 定义tomcat启动参数如tomcat_free: JAVA_OPTS="-server -Xms512m -Xmx2048m -XX:MaxNewSize=512m -XX:PermSize=128M -XX:MaxPermSize=256M"
  5. 定义tomcat下载版本例如tomcat_ver: 7.0.106
  6. 执行tomcat-install.yml即可全自动安装

README.md

创建vars目录下main.yml 变量

  1. #定义tomcat变量
  2. jdk_version: 241 #定义jdk的版本号于files文件中的软件名称相对应
  3. jdk_PATH: /usr/local/jdk/ #定义安装jdk路径
  4. softdir: /softdir1 #创建临时软件放置目录
  5. tomcat_path: /soft/tomcat #定义tomcat目录
  6. tomcat_port: 8088 #定义tomcat端口号
  7. tomcat_free: JAVA_OPTS="-server -Xms512m -Xmx2048m -XX:MaxNewSize=512m -XX:PermSize=128M -XX:MaxPermSize=256M" #定义tomcat启动参数
  8. tomcat_ver: 7.0.106 #定义tomcat下载版本
  9. tomcat_ver_main: "{{ tomcat_ver.split('.')[0] }}" #截取定义tomcat版本路径的首数字 用于下载tomcat url确定
  10. down_url: https://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-{{ tomcat_ver_main }}/v{{ tomcat_ver }}/bin/apache-tomcat-{{ tomcat_ver }}.tar.gz #tomcat下载地址
  11.  
  12. # vars file for tomcat-install

main.yml

创建templates目录下模板文件 jdk环境变量 tomcat的sever文件 tomcat的启停脚本

  1. JAVA_HOME={{ jdk_PATH }}
  2. JAVA_BIN={{ jdk_PATH }}bin
  3. JRE_HOME={{ jdk_PATH }}jre
  4. PATH=$PATH:{{ jdk_PATH }}bin:{{ jdk_PATH }}jre/bin
  5. CLASSPATH={{ jdk_PATH }}jre/lib:{{ jdk_PATH }}lib:{{ jdk_PATH }}jre/lib/charsets.jar

jdk_path

  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9.  
  10. http://www.apache.org/licenses/LICENSE-2.0
  11.  
  12. Unless required by applicable law or agreed to in writing, software
  13. distributed under the License is distributed on an "AS IS" BASIS,
  14. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. See the License for the specific language governing permissions and
  16. limitations under the License.
  17. -->
  18. <!-- Note: A "Server" is not itself a "Container", so you may not
  19. define subcomponents such as "Valves" at this level.
  20. Documentation at /docs/config/server.html
  21. -->
  22. <Server port="8085" shutdown="SHUTDOWN">
  23. <!-- Security listener. Documentation at /docs/config/listeners.html
  24. <Listener className="org.apache.catalina.security.SecurityListener" />
  25. -->
  26. <!--APR library loader. Documentation at /docs/apr.html -->
  27. <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
  28. <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
  29. <Listener className="org.apache.catalina.core.JasperListener" />
  30. <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  31. <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  32. <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  33. <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
  34.  
  35. <!-- Global JNDI resources
  36. Documentation at /docs/jndi-resources-howto.html
  37. -->
  38. <GlobalNamingResources>
  39. <!-- Editable user database that can also be used by
  40. UserDatabaseRealm to authenticate users
  41. -->
  42. <Resource name="UserDatabase" auth="Container"
  43. type="org.apache.catalina.UserDatabase"
  44. description="User database that can be updated and saved"
  45. factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
  46. pathname="conf/tomcat-users.xml" />
  47. </GlobalNamingResources>
  48.  
  49. <!-- A "Service" is a collection of one or more "Connectors" that share
  50. a single "Container" Note: A "Service" is not itself a "Container",
  51. so you may not define subcomponents such as "Valves" at this level.
  52. Documentation at /docs/config/service.html
  53. -->
  54. <Service name="Catalina">
  55.  
  56. <!--The connectors can use a shared executor, you can define one or more named thread pools-->
  57. <!--
  58. <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
  59. maxThreads="150" minSpareThreads="4"/>
  60. -->
  61.  
  62. <!-- A "Connector" represents an endpoint by which requests are received
  63. and responses are returned. Documentation at :
  64. Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
  65. Java AJP Connector: /docs/config/ajp.html
  66. APR (HTTP/AJP) Connector: /docs/apr.html
  67. Define a non-SSL HTTP/1.1 Connector on port 8080
  68. -->
  69. <Connector port="{{ tomcat_port }}"
  70. protocol="HTTP/1.1"
  71. connectionTimeout="20000"
  72. redirectPort="8443"
  73. maxThreads="500"
  74. minSpareThreads="20"
  75. acceptCount="300"
  76. disableUploadTimeout="true"
  77. enableLookups="false"
  78. URIEncoding="UTF-8"
  79. keepAliveTimeout="10000"/>
  80. <!-- A "Connector" using the shared thread pool-->
  81. <!--
  82. <Connector executor="tomcatThreadPool"
  83. port="8080" protocol="HTTP/1.1"
  84. connectionTimeout="20000"
  85. redirectPort="8443" />
  86. -->
  87. <!-- Define a SSL HTTP/1.1 Connector on port 8443
  88. This connector uses the JSSE configuration, when using APR, the
  89. connector should be using the OpenSSL style configuration
  90. described in the APR documentation -->
  91. <!--
  92. <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
  93. maxThreads="150" scheme="https" secure="true"
  94. clientAuth="false" sslProtocol="TLS" />
  95. -->
  96.  
  97. <!-- Define an AJP 1.3 Connector on port 8009 -->
  98. <Connector port="8089" protocol="AJP/1.3" redirectPort="8443" />
  99.  
  100. <!-- An Engine represents the entry point (within Catalina) that processes
  101. <?xml version='1.0' encoding='utf-8'?>
  102. <!--
  103. Licensed to the Apache Software Foundation (ASF) under one or more
  104. contributor license agreements. See the NOTICE file distributed with
  105. this work for additional information regarding copyright ownership.
  106. The ASF licenses this file to You under the Apache License, Version 2.0
  107. (the "License"); you may not use this file except in compliance with
  108. the License. You may obtain a copy of the License at
  109.  
  110. http://www.apache.org/licenses/LICENSE-2.0
  111.  
  112. Unless required by applicable law or agreed to in writing, software
  113. distributed under the License is distributed on an "AS IS" BASIS,
  114. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  115. See the License for the specific language governing permissions and
  116. limitations under the License.
  117. -->
  118. <!-- Note: A "Server" is not itself a "Container", so you may not
  119. define subcomponents such as "Valves" at this level.
  120. Documentation at /docs/config/server.html
  121. -->
  122. <Server port="8085" shutdown="SHUTDOWN">
  123. <!-- Security listener. Documentation at /docs/config/listeners.html
  124. <Listener className="org.apache.catalina.security.SecurityListener" />
  125. -->
  126. <!--APR library loader. Documentation at /docs/apr.html -->
  127. <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
  128. <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
  129. <Listener className="org.apache.catalina.core.JasperListener" />
  130. <!-- Prevent memory leaks due to use of particular java/javax APIs-->
  131. <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
  132. <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
  133. <Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
  134.  
  135. <!-- Global JNDI resources
  136. Documentation at /docs/jndi-resources-howto.html
  137. -->
  138. <GlobalNamingResources>
  139. <!-- Editable user database that can also be used by
  140. UserDatabaseRealm to authenticate users
  141. -->
  142. <Resource name="UserDatabase" auth="Container"
  143. type="org.apache.catalina.UserDatabase"
  144. description="User database that can be updated and saved"
  145. factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
  146. pathname="conf/tomcat-users.xml" />
  147. </GlobalNamingResources>
  148.  
  149. <!-- A "Service" is a collection of one or more "Connectors" that share
  150. a single "Container" Note: A "Service" is not itself a "Container",
  151. so you may not define subcomponents such as "Valves" at this level.
  152. Documentation at /docs/config/service.html
  153. -->
  154. <Service name="Catalina">
  155.  
  156. <!--The connectors can use a shared executor, you can define one or more named thread pools-->
  157. <!--
  158. <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
  159. maxThreads="150" minSpareThreads="4"/>
  160. -->
  161.  
  162. <!-- A "Connector" represents an endpoint by which requests are received
  163. and responses are returned. Documentation at :
  164. Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
  165. Java AJP Connector: /docs/config/ajp.html
  166. APR (HTTP/AJP) Connector: /docs/apr.html
  167. Define a non-SSL HTTP/1.1 Connector on port 8080
  168. -->
  169. <Connector port="{{ tomcat_port }}"
  170. protocol="HTTP/1.1"
  171. connectionTimeout="20000"
  172. redirectPort="8443"
  173. maxThreads="500"
  174. minSpareThreads="20"
  175. acceptCount="300"
  176. disableUploadTimeout="true"
  177. enableLookups="false"
  178. URIEncoding="UTF-8"
  179. keepAliveTimeout="10000"/>
  180. <!-- A "Connector" using the shared thread pool-->
  181. <!--
  182. <Connector executor="tomcatThreadPool"
  183. port="8080" protocol="HTTP/1.1"
  184. connectionTimeout="20000"
  185. redirectPort="8443" />
  186. -->
  187. <!-- Define a SSL HTTP/1.1 Connector on port 8443
  188. This connector uses the JSSE configuration, when using APR, the
  189. connector should be using the OpenSSL style configuration
  190. described in the APR documentation -->
  191. <!--
  192. <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
  193. maxThreads="150" scheme="https" secure="true"
  194. clientAuth="false" sslProtocol="TLS" />
  195. -->
  196.  
  197. <!-- Define an AJP 1.3 Connector on port 8009 -->
  198. <Connector port="8089" protocol="AJP/1.3" redirectPort="8443" />
  199.  
  200. <!-- An Engine represents the entry point (within Catalina) that processes
  201. every request. The Engine implementation for Tomcat stand alone
  202. analyzes the HTTP headers included with the request, and passes them
  203. on to the appropriate Host (virtual host).
  204. Documentation at /docs/config/engine.html -->
  205.  
  206. <!-- You should set jvmRoute to support load-balancing via AJP ie :
  207. <Engine name="Catalina" defaultHost="localhost" jvmRoute="jvm1">
  208. -->
  209. <Engine name="Catalina" defaultHost="localhost">
  210.  
  211. <!--For clustering, please take a look at documentation at:
  212. /docs/cluster-howto.html (simple how to)
  213. /docs/config/cluster.html (reference documentation) -->
  214. <!--
  215. <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
  216. -->
  217.  
  218. <!-- Use the LockOutRealm to prevent attempts to guess user passwords
  219. via a brute-force attack -->
  220. <Realm className="org.apache.catalina.realm.LockOutRealm">
  221. <!-- This Realm uses the UserDatabase configured in the global JNDI
  222. resources under the key "UserDatabase". Any edits
  223. that are performed against this UserDatabase are immediately
  224. available for use by the Realm. -->
  225. <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
  226. resourceName="UserDatabase"/>
  227. </Realm>
  228.  
  229. <Host name="localhost" appBase="webapps"
  230. unpackWARs="true" autoDeploy="true">
  231.  
  232. <!-- SingleSignOn valve, share authentication between web applications
  233. Documentation at: /docs/config/valve.html -->
  234. <!--
  235. <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
  236. -->
  237.  
  238. <!-- Access log processes all example.
  239. Documentation at: /docs/config/valve.html
  240. Note: The pattern used is equivalent to using pattern="common" -->
  241. <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
  242. prefix="localhost_access_log." suffix=".txt"
  243. pattern="%h %l %u %t &quot;%r&quot; %s %b" />
  244. </Host>
  245. </Engine>
  246. </Service>
  247. </Server>

server.xml.j2

  1. #!/bin/sh
  2. # chkconfig: 345 99 10
  3. # description: Auto-starts tomcat
  4. # /etc/init.d/tomcatd
  5. # Tomcat auto-start
  6. # Source function library.
  7. #. /etc/init.d/functions
  8. # source networking configuration.
  9. #. /etc/sysconfig/network
  10. prog="tomcat"
  11. RETVAL=0
  12.  
  13. CATALINA_HOME={{ tomcat_path }}
  14.  
  15. start()
  16. {
  17. if [ -f $CATALINA_HOME/bin/startup.sh ];
  18. then
  19. echo $"Starting $prog"
  20. $CATALINA_HOME/bin/startup.sh
  21. RETVAL=$?
  22. echo " OK"
  23. return $RETVAL
  24. fi
  25. }
  26. stop()
  27. {
  28. if [ -f $CATALINA_HOME/bin/shutdown.sh ];
  29. then
  30. echo $"Stopping $prog"
  31. $CATALINA_HOME/bin/shutdown.sh
  32. RETVAL=$?
  33. #sleep 1
  34. ps -ef |grep $CATALINA_HOME |grep -v grep |grep -v PID | awk '{print $2}'|xargs kill -9
  35. echo " OK"
  36. # [ $RETVAL -eq 0 ] && rm -f /var/lock/...
  37. return $RETVAL
  38. fi
  39. }
  40. case "$1" in
  41. start)
  42. start
  43. ;;
  44. stop)
  45. stop
  46. ;;
  47. restart)
  48. echo $"Restaring $prog"
  49. $0 stop && sleep 1 && $0 start
  50. ;;
  51. *)
  52. echo $"Usage: $0 {start|stop|restart}"
  53. exit 1
  54. ;;
  55. esac
  56. exit $RETVAL

tomcat

创建tasks下main.yml主文件(定义剧本执行顺序) basics.yml(基本环境配置) copy.yml(jdk安装) tomcat.yml(tomcat安装部署)

  1. ---
  2. # tasks file for tomcat-install
  3. - include: basics.yml
  4. - include: copy.yml
  5. - include: tomcat.yml

main.yml

  1. - name: 关闭firewalld
  2. service: name=firewalld state=stopped enabled=no
  3.  
  4. - name: 临时关闭 selinux
  5. shell: "setenforce 0"
  6. failed_when: false
  7.  
  8. - name: 永久关闭 selinux
  9. lineinfile:
  10. dest: /etc/selinux/config
  11. regexp: "^SELINUX="
  12. line: "SELINUX=disabled"
  13.  
  14. - name: 添加EPEL仓库
  15. yum: name=epel-release state=latest
  16.  
  17. - name: 安装常用软件包
  18. yum:
  19. name:
  20. - vim
  21. - lrzsz
  22. - net-tools
  23. - wget
  24. - curl
  25. - bash-completion
  26. - rsync
  27. - gcc
  28. - unzip
  29. - git
  30. state: latest

basics.yml

  1. - name: crate soft dir #创建软件目录
  2. file: path={{ softdir }} state=directory
  3. - name: jdk package
  4. unarchive: src={{ softdir }}/jdk-8u{{ jdk_version }}-linux-x64.tar.gz dest={{ softdir }} copy=yes mode=755
  5. #解压软件包到softdir目录
  6. - name: jdk dir rename
  7. shell: "if [ ! -d {{ jdk_PATH }} ]; then mv {{ softdir }}/jdk1.8.0_{{ jdk_version }}/ {{ jdk_PATH }}; fi"
  8. #判断目录下有无jdk目录 将jdk移动至指定目录
  9. - name: copy jdk_patg
  10. template: src=jdk_path dest={{ softdir }} owner=root group=root
  11. #将jdk模板环境变量文件放置指定目录
  12. - name: wirte profile
  13. shell: "if [ `grep {{ jdk_PATH }}/bin /etc/profile |wc -l` -eq 0 ]; then cat {{ softdir }}/jdk_path >> /etc/profile ; fi"
  14. #将环境变量模板文件写入环境变量中
  15. - name: source profile
  16. shell: "source /etc/profile"
  17. #重新加载环境变量

copy.yml

  1. - name: tomcat pag
  2. unarchive: src={{ softdir }}/apache-tomcat-{{ tomcat_ver }}.tar.gz dest={{ softdir }} copy=no owner=root group=root
  3. - name: dir rename
  4. shell: "if [ ! -d {{ tomcat_path }} ]; then mv {{ softdir }}/apache-tomcat-{{ tomcat_ver }}/ {{ tomcat_path }}; fi"
  5. - name: modify tomcat start parameter
  6. lineinfile:
  7. dest: "{{ tomcat_path }}/bin/catalina.sh"
  8. insertbefore: "cygwin=false"
  9. line: "{{ tomcat_free }}"
  10. - name: join variable_1
  11. lineinfile:
  12. dest: "{{ tomcat_path }}/bin/catalina.sh"
  13. insertbefore: "cygwin=false"
  14. line: "CATALINA_HOME={{ tomcat_path }}"
  15.  
  16. - name: join variable_2
  17. lineinfile:
  18. dest: "{{ tomcat_path }}/bin/catalina.sh"
  19. insertbefore: "cygwin=false"
  20. line: "JAVA_HOME={{ jdk_PATH }}"
  21.  
  22. - name: join variable_3
  23. lineinfile:
  24. dest: "{{ tomcat_path }}/bin/catalina.sh"
  25. insertbefore: "cygwin=false"
  26. line: "JRE_BIN={{ jdk_PATH }}bin"
  27.  
  28. - name: join variable_4
  29. lineinfile:
  30. dest: "{{ tomcat_path }}/bin/catalina.sh"
  31. insertbefore: "cygwin=false"
  32. line: "JRE_HOME={{ jdk_PATH }}jre"
  33.  
  34. - name: join variable_5
  35. lineinfile:
  36. dest: "{{ tomcat_path }}/bin/catalina.sh"
  37. insertbefore: "cygwin=false"
  38. line: "CLASSPATH={{ jdk_PATH }}jre/lib:{{ jdk_PATH }}lib:{{ jdk_PATH }}jre/lib/charsets.jar"
  39. - name: modifly tomcat file
  40. template: src=server.xml.j2 dest={{ tomcat_path }}/conf/server.xml owner=root group=root mode=0755
  41. - name: copy tomcat start
  42. template: src=tomcat dest=/usr/bin/ owner=root group=root mode=0755
  43. - name: copy tomcat system
  44. template: src=tomcat dest=/etc/init.d/ owner=root group=root mode=0755
  45. - name: start tomcat
  46. service: name=tomcat state=restarted enabled=yes

tomcat.yml

ansible基本命令及剧本的更多相关文章

  1. ansible基础-playbook剧本的使用

    ansible基础-playbook剧本的使用 作者:尹正杰  版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.YAML概述 1>.YAML的诞生 YAML是一个可读性高,用来表达数据序 ...

  2. Ansible之playbook剧本

    Ansible之playbook剧本 目录 Ansible之playbook剧本 1. playbook的组成 2. 剧本示例test1 2.1 剧本制作 2.2 准备http.conf 2.3 运行 ...

  3. ansible服务及剧本编写

    第1章 ansible软件概念说明 python语言是运维人员必会的语言,而ansible是一个基于Python开发的自动化运维工具 (saltstack).其功能实现基于SSH远程连接服务:ansi ...

  4. ansible的playbook剧本

    一.playbook剧本介绍 1)playbook介绍 Playbooks是Ansible的配置,部署和编排语言.它们可以描述您希望远程系统执行的策略,或一般IT流程中的一组步骤. 如果说ansibl ...

  5. ansible 五 playbooks剧本使用

    一.Playbook 简介 Playbooks与Ad-Hoc相比,是一种完全不同的运用Ansible的方式,而且是非常之强大的:也是系统ansible命令的集合,其利用yaml语言编写,运行过程,an ...

  6. Ansible基本命令

    Ansible安装完成之后就自带很多命令,其中较常用的有7个: ansible ansible-doc ansible-galaxy ansible-init ansible-playbook ans ...

  7. ansible 基本命令学习与踩坑

    1. 命令行参数 -v,–verbose 详细模式,如果命令执行成功,输出详细的结果(-vv –vvv -vvvv) -i PATH,–inventory=PATH 指定host文件的路径,默认是在/ ...

  8. linux系统ansible一键完成三大服务器基础配置(剧本)

    ansible自动化管理剧本方式一键完成三大服务器基础配置 环境准备:五台服务器:管理机m01:172.16.1.61,两台web服务器172.16.1.7,172.16.1.8,nfs存储服务器17 ...

  9. Ansible - 简介和应用自动化基础实践

    installAnsible简介和应用自动化基础实践 一.引入: 1.1  如官方定义,Ansible is The simplest way to automate apps and IT infr ...

随机推荐

  1. GoLang设计模式07 - 责任链模式

    责任链模式是一种行为型设计模式.在这种模式中,会为请求创建一条由多个Handler组成的链路.每一个进入的请求,都会经过这条链路.这条链路上的Handler可以选择如下操作: 处理请求或跳过处理 决定 ...

  2. fibnacci数列

    斐波那契数列(Fibonacci sequence),又称黄金分割数列.因数学家列昂纳多·斐波那契(Leonardoda Fibonacci)以兔子繁殖为例子而引入,故又称为"兔子数列&qu ...

  3. Linux服务器通用安全加固指南

    一.基本系统安全 1.保护引导过程(以Grub引导为例) 在 /etc/inittab 中添加 sp:S:respawn:/sbin/sulogin,以确保当切换到单用户模式时 运行级的配置要求输入  ...

  4. 一文让你掌握软件测试工程师SQL面试题

    数据结构说明 已知有如下4张表: 学生表:student(学号,学生姓名,出生年月,性别) 成绩表:score(学号,课程号,成绩) 课程表:course(课程号,课程名称,教师号) 教师表:teac ...

  5. Spotlight监控工具的使用

    Spotlight下载地址:http://spotlight-on-unix.software.informer.com/download/#downloading Spotlight是Quest公司 ...

  6. 痞子衡嵌入式:MCUBootUtility v3.4发布,支持串行NAND

    -- 痞子衡维护的 NXP-MCUBootUtility 工具距离上一个大版本(v3.3.0)发布过去 4 个多月了,这一次痞子衡为大家带来了版本升级 v3.4.0,这个版本主要有几个非常重要的更新需 ...

  7. CF786C-Till I Collapse【树状数组倍增,优先队列】

    正题 题目链接:https://www.luogu.com.cn/problem/CF786C 题目大意 给出一个长度为\(n\)的序列. 对于每个\(k\in[1,n]\)求将\(n\)分成最少的段 ...

  8. python numpy loadtxt

    用numpy加载csv文件数据 发现python numpy loadtxt 方法和数据的结构有很大关系当我的数据有第一行文字是这样子的时候 我程序的运行结果永远都报错,编码格式也处理了统一utf-8 ...

  9. Linux 下 SVN 的安装和配置

    SVN 是一个自由开源的版本管理系统,它可以按照时间的顺序去管理文件.目录以及对其进行的修改.于今,它被广泛的用于互联网公司的项目版本管理中 工作原理 它的工作原理如下图所示 它是由一个SVN服务器和 ...

  10. CAD图DWG解析WebGIS可视化技术分析总结

    背景 AutoCAD是国际上著名的二维和三维CAD设计软件,用于二维绘图.详细绘制.设计文档和基本三维设计.现已经成为国际上广为流行的绘图工具..dwg文件格式成为二维绘图的事实标准格式. 但由于Au ...