好久不配置tomcat了,以前都是进去配置下JDK,Connector,今天让配置Context,顾学习记录下。 JDK /bin/catalina.sh Connector + Context /conf/server.xml Context标签 Context标签可用于Tomcat部署web项目 ...
分类:
其他好文 时间:
2021-05-24 09:29:50
阅读次数:
0
在日常使用ansible playbook的过程中,我们有时候希望做一下补救性的操作,做一些判断, 例如: Default 1 2 3 4 5 6 7 8 9 10 11 tasks: - block: - debug: msg='i execute normally' - command: /bi ...
分类:
其他好文 时间:
2021-04-08 13:17:01
阅读次数:
0
1.新增host配置到/etc/ansible/hosts文件中 [docker] 192.168.43.95 2.配置无密码登录 # 配置ssh,默认rsa加密,保存目录(公钥)~/.ssh/id_rsa.pub ssh-keygen -t rsa # 配置无密码登陆,这里需要分别4次发送至4台服 ...
分类:
其他好文 时间:
2020-12-09 12:17:15
阅读次数:
4
tomcat介绍 tomcat部署 版本tomcat9.0 关闭防火墙,SElinux java环境安装 jdk环境:openjdk、官方jdk [root@vm5 ~]# yum -y install java-11-openjdk java-11-openjdk-devel [root@vm5 ...
分类:
其他好文 时间:
2020-12-03 11:58:12
阅读次数:
5
在使用Tomcat部署服务器之前我们需要写一个页面登录的HTML文本 该文本如下 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <style type="text/css"> ...
分类:
其他好文 时间:
2020-11-17 13:02:00
阅读次数:
24
Ansible变量 一、变量介绍 1.概念 变量提供了便捷的方式来管理Ansible playbook的每一个项目中的动态值, 比如nginx-1.6.3这个软件包的版本,在其它地方或许会反复使用,那么如果讲此值设置为变量, 然后再在其他的playbook中调用,会方便许多。如此一来还方便维护,减少 ...
分类:
其他好文 时间:
2020-09-24 21:15:26
阅读次数:
42
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:
其他好文 时间:
2020-09-17 17:19:41
阅读次数:
32
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:
其他好文 时间:
2020-09-17 17:19:20
阅读次数:
33
1.ansible命令集ansible:定义并运行简单任务。ansible-config:查看、编辑、管理ansible配置。ansible-doc:文档查看工具。ansible-galaxy:共享和下载roles的工具。ansible-inventory:查看inventory的信息。ansible-playbook:执行playbook。ansible-pull:从仓库中拉去playbook。
分类:
其他好文 时间:
2020-08-19 20:09:27
阅读次数:
115
一、 yaml语法简介 在单一档案中,可用连续三个连字符号( )区分多个档案 次行开始正常写playbook的内容,一般建议写明该playbook的功能 使用#注释 缩进必须是统一的,不能空格和tab混用 缩进的级别必须是一致的,同样的缩进达标同样的级别, yaml我呢见区分大小写 多个k/v可同行 ...
分类:
其他好文 时间:
2020-07-26 23:01:01
阅读次数:
65