摘要:
JDK版本:1.8.0_161 Weblogic版本:12.2.1.3 一、前期准备 1、创建用户和组 # groupadd web # useradd -g web weblogic # passwd weblogic Changing password for user weblogic. Ne 阅读全文
摘要:
将自定义Property传递给Software Component 示例: vRA7 支持 Software Components,并且还可以在用户的申请页面中,做一个下拉菜单,让用户选择需要安装的Software.... 参考链接:http://www.vmtocloud.com/how-to-u 阅读全文
摘要:
什么是docker的link机制 同一个宿主机上的多个docker容器之间如果想进行通信,可以通过使用容器的ip地址来通信,也可以通过宿主机的ip加上容器暴露出的端口号来通信,前者会导致ip地址的硬编码,不方便迁移,并且容器重启后ip地址会改变,除非使用固定的ip,后者的通信方式比较单一,只能依靠监 阅读全文
摘要:
MASQUERADE 地址伪装,和SNAT功能一样,只不过SNAT使用固定IP地址,MASQUERADE使用网卡上的地址。 SNAT配置: iptables -t nat -A POSTROUTING -s 10.10.10.0/24 -o eth0 -j SNAT --to-source 114. 阅读全文
摘要:
Docker应用栈结构图 Build Django容器 编写docker-file build django-with-redis image 启动容器 配置Redis Redis-Master配置文件, 任意redis兼容的配置文件, 修改以下两个参数 Redis-Slave配置文件,任意redi 阅读全文
摘要:
Wordpress + Mysql 阅读全文
摘要:
微服务Architecture(MicroServices) 微服务架构简单的定义 采用一组Service的方式来构建一个应用,服务独立部署在不同的进程(Container)中,不同Service通过一些轻量级交互机制来通信,例如:RPC、API、HTTP等;Service可独立扩展伸缩,每个Ser 阅读全文
摘要:
Docker三剑客: Docker-Machine Docker Machine is a tool that lets you install Docker Engine on virtual hosts, and manage the hosts with docker-machine comm 阅读全文
摘要:
什么是 TSDB (Time Series Database): 我们可以简单的理解为.一个优化后用来处理时间序列数据的软件,并且数据中的数组是由时间进行索引的. 时间序列数据库的特点: 大部分时间都是写入操作 写入操作几乎是顺序添加;大多数时候数据到达后都以时间排序. 写操作很少写入很久之前的数据 阅读全文
摘要:
Grafana是一款开源的分析平台。 Grafana allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and 阅读全文
摘要:
Prometheus 是一个强大的监控平台,提供了监控数据搜集、存储、处理、可视化和告警一套完整的解决方案。 官方网站:https://prometheus.io 阅读全文
摘要:
gitHub地址:https://github.com/google/cadvisor cAdvisor cAdvisor (Container Advisor) provides container users an understanding of the resource usage and 阅读全文
摘要:
官网地址:https://www.weave.works/oss/scope/ 安装 执行如下脚本安装运行 Weave Scope。 curl -L git.io/scope -o /usr/local/bin/scope chmod a+x /usr/local/bin/scope 启动 scop 阅读全文
摘要:
github地址:https://github.com/rexray/rexray 安装: curl -sSL https://rexray.io/install | sh - 生成配置文件: http://rexrayconfig.cfapps.io 阅读全文
摘要:
第一步,安装etcd: 请参考以前的文章: http://www.cnblogs.com/vincenshen/articles/8637949.html 第二步,下载calico: 第三步,编写calico配置文件: 第四步,运行calico node: calico node会以containe 阅读全文
摘要:
Docker Machine Overview Estimated reading time: 4 minutes You can use Docker Machine to: Install and run Docker on Mac or Windows Provision and manage 阅读全文
摘要:
Docker提供两种原生的跨主机网络: Overlay 和 Macvlan libnetwork & CNM libnetwork 是 docker 容器网络库,最核心的内容是其定义的 Container Network Model (CNM),这个模型对容器网络进行了抽象,由以下三类组件组成: S 阅读全文
摘要:
Use tmpfs mounts Volumes and bind mounts are mounted into the container’s filesystem by default, and their contents are stored on the host machine. Th 阅读全文
摘要:
Use bind mounts Bind mounts have been around since the early days of Docker. Bind mounts have limited functionality compared to volumes. When you use 阅读全文
摘要:
Volumes是Docker最为推荐的数据持久化方法。 Volumes have several advantages over bind mounts: Volumes are easier to back up or migrate than bind mounts. You can manag 阅读全文