07 2017 档案

使用 lego生成 Let's Encrypt 证书
摘要:1. 工具 https://github.com/xenolf/lego 2. 使用 命令生成新的 lego --email="foo@bar.com" --domains="example.com" run 请求重新生成 lego --email="foo@bar.com" --domains=" 阅读全文

posted @ 2017-07-31 19:54 荣锋亮 阅读(1458) 评论(0) 推荐(0) 编辑

piwik docker 安装
摘要:备注: 生产环境使用docker-compose 1. 安装docker && docker-compose 此处略过 2. 下载docker-compose 的文件 https://github.com/indiehosters/piwik 操作如下: git clone https://gith 阅读全文

posted @ 2017-07-27 17:47 荣锋亮 阅读(952) 评论(0) 推荐(0) 编辑

maven-assembly-plugin 打包简单案例
摘要:简单项目 1. maven netty lomback 包含项目依赖 <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.9.Final</ve 阅读全文

posted @ 2017-07-19 15:26 荣锋亮 阅读(1986) 评论(0) 推荐(0) 编辑

REX-Ray 了解
摘要:REX-Ray 是一个 EMC {code} 团队领导的开源项目,为 Docker、Mesos 及其他容器运行环境提供持续的存储访问。其设计旨在囊括通用存储、虚拟化和云平台,提供高级的存储功能。 当前支持的系统: Ubuntu Debian RedHat CentOS CoreOS OSX REX- 阅读全文

posted @ 2017-07-17 21:42 荣锋亮 阅读(896) 评论(0) 推荐(0) 编辑

sqlserver docker 安装部署试用
摘要:1. 镜像 docker pull exoplatform/sqlserver 2. 镜像参数 docker pull exoplatform/sqlserver docker run -d -e SA_PASSWORD=<passord> -e SQLSERVER_DATABASE=<db nam 阅读全文

posted @ 2017-07-16 22:29 荣锋亮 阅读(3450) 评论(0) 推荐(1) 编辑

Liquibase 了解
摘要:Liquibase 是一个用于跟踪、管理和应用数据库变化的开源的数据库重构工具。它将所有数据库的变化(包括结构和数据)都保存在 XML 文件中,便于版本控制。 Liquibase 具备如下特性: 不依赖于特定的数据库,目前支持包括 Oracle/Sql Server/DB2/MySql/Sybase 阅读全文

posted @ 2017-07-16 15:02 荣锋亮 阅读(508) 评论(0) 推荐(0) 编辑

web 调试工具docker的安装使用
摘要:1. weinre 工具 docker run -d -p 8080:8080 beevelop/weinre 2. vorlonjs(不支持https) docker run --name vorlonjs -p 80:1337 vorlonjs/dashboard:0.3.0 3. vorlon 阅读全文

posted @ 2017-07-15 11:33 荣锋亮 阅读(493) 评论(0) 推荐(0) 编辑

“VT-x is not available. (VERR_VMX_NO_VMX)” in VirtualBox
摘要:Sometimes you can get “VT-x is not available. (VERR_VMX_NO_VMX)” error if you are trying to start x64 bit virtual machine in VirtualBox. Failed to ope 阅读全文

posted @ 2017-07-11 23:31 荣锋亮 阅读(14881) 评论(2) 推荐(0) 编辑

Service Mesh 了解
摘要:是什么 Service Mesh是专用的基础设施层。 轻量级高性能网络代理。 提供安全的、快速的、可靠地服务间通讯。 与实际应用部署一起但对应用是透明的 作用 提供熔断机制(circuit-breaking)。 提供感知延迟的负载均衡(latency-awareload balancing)。 最终 阅读全文

posted @ 2017-07-10 16:07 荣锋亮 阅读(666) 评论(0) 推荐(0) 编辑

docker swarm mode routing mesh 使用
摘要:Docker Engine swarm mode makes it easy to publish ports for services to make them available to resources outside the swarm. All nodes participate in an ingress routing mesh. The routing mesh enables e... 阅读全文

posted @ 2017-07-10 16:01 荣锋亮 阅读(1215) 评论(0) 推荐(0) 编辑

Portainer docker 可视化管理工具
摘要:1. 快速使用 docker run -d -p 9000:9000 portainer/portainer 2. docker swarm 模式 docker run -d -p 9000:9000 portainer/portainer 2. docker swarm 模式 docker ser 阅读全文

posted @ 2017-07-10 15:59 荣锋亮 阅读(3204) 评论(0) 推荐(0) 编辑

转 neighbour table overflow 问题解决
摘要:接到保障,说某来机器服务没法访问,于是,准备连接到机器上去看个究竟. 尼玛居然连不上,连ping都ping不通,无奈只能求助机房. 机房人员检查, 发现报 neighbour table overflow 错误. 无奈让机房的人员重启了服务器. 查找原因,搜索得到如下说法: 第一种说法:内核维护的a 阅读全文

posted @ 2017-07-09 14:46 荣锋亮 阅读(1294) 评论(0) 推荐(0) 编辑

秘密共享
摘要:秘密共享的思想是将秘密以适当的方式拆分,拆分后的每一个份额由不同的参与者管理,单个参与者无法恢复秘密信息,只有若干个参与者一同协作才能恢复秘密消息。更重要的是,当其中任何相应范围内参与者出问题时,秘密仍可以完整恢复。 秘密共享的关键是怎样更好的设计秘密拆分方式和恢复方式。 秘密共享是一种将秘密分割存 阅读全文

posted @ 2017-07-08 22:37 荣锋亮 阅读(1053) 评论(0) 推荐(0) 编辑

Let’s Encrypt 将于 2018 年免费提供通配符证书
摘要:旨在让每个网站都启用 HTTPS 加密的 Let's Encrypt CA 宣布将于 2018 年 1 月免费提供通配符证书(Wildcard certificate)。通配符证书是一种可被多个子域使用的公钥证书。这意味着,单个证书可用于提供多台服务器或一台服务器托管的多个子域名的网页加密,显著降低 阅读全文

posted @ 2017-07-08 10:37 荣锋亮 阅读(260) 评论(0) 推荐(0) 编辑

使用 openresty 修改请求内容
摘要:1. 目的 动态修改 html 页面内容 2. 使用方式 openresty 在 header_filter 阶段 以及body_filter 阶段进行数据修改 3. 源码 此方法是实现一个追加 js 到html 页面,同时将原有页面信息转为大写 location /{ root html; ind 阅读全文

posted @ 2017-07-07 10:56 荣锋亮 阅读(5524) 评论(0) 推荐(0) 编辑

Serf 了解
摘要:Introduction to Serf Welcome to the intro guide to Serf! This guide will show you what Serf is, explain the problems Serf solves, compare Serf versus 阅读全文

posted @ 2017-07-06 20:35 荣锋亮 阅读(654) 评论(0) 推荐(0) 编辑

Nomad 了解
摘要:Introduction to Nomad Welcome to the intro guide to Nomad! This guide is the best place to start with Nomad. We cover what Nomad is, what problems it 阅读全文

posted @ 2017-07-06 19:57 荣锋亮 阅读(550) 评论(0) 推荐(0) 编辑

转发 Java火焰图在Netflix的实践
摘要:为了分析不同软件或软件的不同版本使用CPU的情况,相关设计人员通常需要进行函数的堆栈性能分析。相比于定期采样获得数据的方式,利用定时中断来收集程序运行时的PC寄存器值、函数地址以及整个堆栈轨迹更加高效。目前,OProfile、gprof和SystemTap等工具都是采用该方法,给出详细的CPU使用情 阅读全文

posted @ 2017-07-05 21:15 荣锋亮 阅读(976) 评论(0) 推荐(0) 编辑

转发 GSLB概要和实现原理
摘要:What is GSLB Global Server Load Balancing 中文:全局负载均衡 SLB(Server load balancing)是对集群内物理主机的负载均衡,而GSLB是对物理集群的负载均衡。这里的负载均衡可能不只是简单的流量均匀分配,而是会根据策略的不同实现不同场景的应 阅读全文

posted @ 2017-07-05 21:09 荣锋亮 阅读(1012) 评论(0) 推荐(0) 编辑

通过openresty && tengine && nginx 动态添加资源到 html 页面
摘要:1. 目标不用修改后端代码,但是还需要进行js 、css 等资源文件的加载主要的场景是进行统计分析2.技术实现通过服务器扩展进行动态添加iis 可以添加模块,nginx 可以使用 sub_filter,tengine 可以使用 ngx_http_footer_filter_module openresty 可以使用sub_filter(默认以及编译进去了) 或者 通过lua 脚本获取内容,然后修... 阅读全文

posted @ 2017-07-05 20:23 荣锋亮 阅读(2569) 评论(0) 推荐(0) 编辑

Terraform 多云管理工具
摘要:1. 介绍 Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular serv 阅读全文

posted @ 2017-07-02 23:00 荣锋亮 阅读(693) 评论(0) 推荐(0) 编辑

vault key 管理工具
摘要:Vault is a tool for securely accessing secrets. A secret is anything that you want to tightly control access to, such as API keys, passwords, certific 阅读全文

posted @ 2017-07-02 20:13 荣锋亮 阅读(441) 评论(0) 推荐(0) 编辑

fabio
摘要:fabio is a fast, modern, zero-conf load balancing HTTP(S) and TCP router for deploying applications managed by consul. Register your services in consu 阅读全文

posted @ 2017-07-01 21:49 荣锋亮 阅读(601) 评论(0) 推荐(0) 编辑

导航