- 博客(27)
- 收藏
- 关注
原创 aws-cli permission denied
After installed aws in mac, need to run aws configure to do the configuration, if you met permission denied problems, please run below cmd to fix: sudo chown $(whoami) ~/.aws/credentialsYou'll pro...
2018-08-27 14:40:04 513
原创 Mac上安装aws cli
按照这个标准来安装 aws cli https://docs.aws.amazon.com/cli/latest/userguide/cli-install-macos.html安装完后要确保以下命令加到环境变量里:编辑文件 ~/.bash_profile 加入以下内容:# Setting PATH for Python 3.6# The original version is ...
2018-08-19 07:51:49 3647
原创 How to configure nginx ssl
How to configure nginx ssl1. Get a CertificateCreate an SSL certificate. These commands are for a self-signed certificate, but you should get an officially signed certificate if you want to avoid brow...
2018-06-11 15:31:30 370
原创 maven 检测版本依赖
mvn dependency:tree -Dincludes=com.fasterxml.jackson.core以上命令可以检测当前项目中对于com.fasterxml.jackson.core 所使用的版本号是多少
2018-06-05 21:24:38 1086
原创 集成spring cloud zipkin到gradle工程
1. 在build.gradle中加入以下内容apply plugin: 'io.spring.dependency-management'dependencyManagement { imports { mavenBom "org.springframework.cloud:spring-cloud-dependencies:Dalston.RELEASE" }}com...
2018-05-24 17:28:43 530
转载 Spring Boot的Maven插件Spring Boot Maven plugin详解
pring Boot的Maven插件(Spring Boot Maven plugin)能够以Maven的方式为应用提供Spring Boot的支持,即为Spring Boot应用提供了执行Maven操作的可能。Spring Boot Maven plugin能够将Spring Boot应用打包为可执行的jar或war文件,然后以通常的方式运行Spring Boot应用。Spring Boot M...
2018-05-17 16:56:34 862
原创 必须包含字母和数字的正则表达式写法
如题,这句话用来判断一句话中是否是一定包含字母和数字的:([0-9]+[a-zA-Z]+|[a-zA-Z]+[0-9]+)[0-9a-zA-Z]*
2018-05-07 16:10:19 15288 2
原创 如何copy github上已有的工程到一个新的repository
## Mirroring a repository1. Create a bare clone of the repository. git clone --bare https://github.com/exampleuser/old-repository.git 2. Mirror-push to the new repository. cd old-repository.git git p...
2018-04-12 14:41:21 1970
转载 java jre library execution environment和alternate jre
一直以来Base64的加密解密都是使用sun.misc包下的BASE64Encoder及BASE64Decoder的 这次换了JDK后发现提示找不到该类,网上有办法说重新配置jre就行了,但事实上不是这么简单的,在我测试后发现,这是要看配置的jre的类型是execution environment(执行环境),还是alternate jre(替代jre)这两种方法中,如果是
2018-01-04 22:33:39 2373
转载 httpClient设置忽略SSL(trust all)
第一个方法自测有效,其余方法摘自网上HttpHost proxy = new HttpHost("100.67.76.9",10003);CloseableHttpClient httpClient = HttpClients.custom() .setProxy(proxy) .setHostnameVerifier(new AllowAllHostnameV
2017-12-14 21:47:33 1722
原创 maven添加jar包到本地repository
mvn install:install-file -Dfile=/Users/blockchain/muf.common.utils-1.0-SNAPSHOT.jar -DgroupId=com.muf -DartifactId=muf.common.utils -Dversion=1.0-SNAPSHOT -Dpackaging=jar
2017-10-29 18:12:58 314
原创 [Docker] ERROR: Failed to creating docker image:Permission denied
[Docker] ERROR: Failed to creating docker image:Permission deniedERROR: Build step failed with exceptionorg.newsclub.net.unix.AFUNIXSocketException: Permission denied (socket: /run/docker.sock)
2017-09-26 20:56:27 1989
原创 多个微服务在docker中运行,且互相调用,解决他们之间的connection问题
如题,通常会遇到这个错误 java.net.NoRouteToHostException: No route to host (Host unreachable)# iptables -A INPUT -i docker0 -j ACCEPT把上面的填加到redhat的iptable里即可。
2017-09-26 20:31:19 3693
转载 java获取文件路径的方法
第一种: File f = new File(this.getClass().getResource("/").getPath()); System.out.println(f); 结果: C:\Documents%20and%20Settings\Administrator\workspace\projectName\bin 获取当前类的所在工程路径; 如果不加“/”
2017-08-31 22:18:55 449
原创 k8s相关命令
查看minikube ip地址:minikube ip查看 cluster信息 比如 https://192.168.99.100:8443kubectl cluster-infokubectl get services查看dashboard:minikube dashboard查看se
2017-08-27 11:06:59 492
原创 minikube里设置代理
在没有科学上网的情况下,minikube有时候不能pull images,可以通过设置代理来解决:安装了minikube后,执行minikube ssh进入vm,然后在vm里进行如下代理设置 1. cat /etc/systemd/system/docker.service.d/10-machine.confEnvironment=HTTP_PROXY=http://ip:port
2017-08-25 15:31:41 4421
转载 Docker镜像上传到阿里云
2017.07.19参考视频:https://ninghao.net/video/3780Docker镜像上传到阿里云1 安装docker运行环境 参考文档:https://docs.docker.com2 注册阿里云账户 阿里云官方网站链接:https://dev.aliyun.com/search.html
2017-08-25 09:19:43 470
转载 无坑畅玩minikube(利用阿里云镜像编译minikube)
Kubernetes占据容器编排的霸主地位,我们一般都会通过minikube实验kubernetes功能,但是minikube是不能直接安装成功的,网上解决方案有2种:– 科学上网– 手动通过阿里云下载所需的google镜像今天我在这里提供第三种方案,这种方案的优势是,我在本文编译的minikube,大家下载回去无需多余设置即可使用。本方法原理是修改minikube源码,将google
2017-08-24 22:48:42 3806
转载 本地安装Kubectl and minikube
查看本地deployments:kubectl get deployments删除deployment:kubectl delete deployment hello-minikube参考文章http://www.jianshu.com/p/a42eeb66a19chttp://www.jianshu.com/p/a552076d4fe3
2017-08-24 14:34:14 679
转载 Docker部署基于Nodejs的Web应用-实战篇
转载自 https://segmentfault.com/a/1190000010541792Dockerdocker是一个开源的应用容器引擎,可以为我们提供安全、可移植、可重复的自动化部署的方式。docker采用虚拟化的技术来虚拟化出应用程序的运行环境。此种方式具有以下优势:每个部署的应用程序都是一个容器,彼此隔离,互不影响;服务器只需要安装docker即可运
2017-08-24 10:16:41 516
转载 Java-MicroProfile-on-Kubernetes
https://github.com/IBM/Java-MicroProfile-on-Kubernetes?cm_mc_uid=13613521364015024112758&cm_mc_sid_50200000=1503500169
2017-08-24 10:01:11 202
转载 What is a Service Mesh and how Istio fits in
We’re pleased to announce the release of a new IBM Code developer journey, Manage microservices traffic using Istio.There’s been a lot of chatter in Silicon Valley recently around service mesh arc
2017-08-24 09:59:53 257
转载 使用Rancher创建负载均衡的容器应用
目录01-在基础设施应用中-添加一个应用02-填写应用的名称和描述-随便写,便于记忆即可03-生成一个新的应用-myapp-并无任何服务04-添加一个服务05-以tutum hello-world镜像为模板,创建1个测试服务,暂时只有1个容器。06-完成测试服务的创建07-在myapp应用中,添加负载均衡0
2017-08-22 20:50:11 1031
原创 把Rancher server所在的host 也加入到cluster中
通常情况我们如果想把某个host加入到rancher server的环境中 非常简单,只需要copy 命令用在相应的host上执行即可。但是在linux里,如果想把rancher server所在的host也当做集群中的一个node来管理,需要对iptables等做一些修改:首先需要修改iptabls,加入 -I INPUT -p tcp --dport 8888 -j ACCEP
2017-08-22 20:16:56 448
原创 配置nginx实现跨域
项目中有时候会遇到跨域的问题,通常这个问题应该从server端解决,但是某些情况下我们不能修改server的代码,我们可以通过setup nginx来实现跨域。还有一点需要注意,nginx不支持http 的option方法,所以需要做些特殊配置。下面是我项目中nginx.conf的详细配置(这个文件中没有配置nginx的负载均衡)同时nginx不支持else和其它的与 或 非 等操作:us
2017-08-21 16:47:58 1127
转载 分布式跟踪系统(一):Zipkin的背景和设计
2010年谷歌发表了其内部使用的分布式跟踪系统Dapper的论文(http://static.googleusercontent.com/media/research.google.com/zh-CN/archive/papers/dapper-2010-1.pdf,译文地址:http://bigbully.github.io/Dapper-translation/),讲述了Dapper在谷歌内部
2017-08-20 17:38:52 210
原创 安装指定版本docker-engine
在redhat或centOS上安装老版本的docker-engine1. sudo yum install -y yum-utils2. 填加repositor, OS版本为 centOS 7sudo yum-config-manager --add-repo https://yum.dockerproject.org/repo/main/centos/7/3. 显示avail
2017-08-20 16:52:07 1146
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人