分类

链接

2025 年 4 月
 123456
78910111213
14151617181920
21222324252627
282930  

近期文章

热门标签

新人福利,免费薅羊毛

PCF常见命令

1.登陆: cf login -a api.sys.sea.preview.pcf.manulife.com 如果不成功,请检查网络代理: set https_proxy=你的代理地址,如果不需要代理,就留空(直接加车) 2.maven打包: mvn package -Dskiptest 3.上传: cf push -f mainfast-dev.yml  

JAVA, PCF, 微服务 暂无评论 阅读(403)

Ocelot+Consul+.netcore高可用&动态伸缩

Ocelot 网关: publicclassStartup { publicStartup(IConfiguration configuration) { Configuration= configuration; } publicIConfigurationConfiguration{ get;} // This method gets called by the runtime. Use this method to add services to the container. publicvoidConfigureServices(IServiceCollection services) {             var config =newConfigurationBuilder() .AddJsonFile("Ocelot.json",false,true) .Build();             services.AddOcelot(config).AddConsul();             servic...

.NET, DevOps, 微服务 暂无评论 阅读(380)

使用Ocelot做网关

1首先创建一个json的配置文件,文件名随便取,我取Ocelot.json 这个配置文件有两种配置方式,第一种,手动填写 服务所在的ip和端口;第二种,用Consul进行服务发现 第一种如下: { "ReRoutes": [ { //转发处理格式 "DownstreamPathTemplate": "/api/{url}", "DownstreamScheme": "http", //手动指明ip和端口号 "DownstreamHostAndPorts": [ { "Host": "localhost", "Port": 6001 } ], //请求格式 "Ups...

.NET, 微服务 暂无评论 阅读(281)

consul+nginx完成集群服务动态发现和健康检查

前言 在《构建Consul集群》章节中介绍了如何实现consul集群的构建,通过对consul的进一步了解,其并没有提供的对cluster直接操作的client-api,故需要针对Consul集群构建一个统一入口,但这个并不需要我们过多的担心,Consul的小伙伴Consul-Template正是为此而生,通过Nginx+ConsulTemplate能够非常方便的实现,本章将来介绍如何配置应用并验证。 本章概要 1、准备工作; 2、Nginx配置; 3、编写ctmpl模板; 4、启动服务; 5、高可用集群验证; 准备工作 1、环境: Client节点:WIN10(192.168.6.78); Server节点...

.NET, 微服务 暂无评论 阅读(336)

Consul 入门教程

目录   一、什么是服务发现 二、consul 简介 三、consul的几个概念 四、安装 Consul 五、运行 Consul Agent 六、集群成员 七、停止 Agent 八、注册服务 九、Consul 集群 十、健康检查 十一、KV Data 十二、Consul Web UI 十三、Docker下安装consul   一、什么是服务发现 微服务的框架体系中,服务发现是不能不提的一个模块。我相信了解或者熟悉微服务的童鞋应该都知道它的重要性。这里我只是简单的提一下,毕竟这不是我们的重点。我们看下面的一幅图片: 图中,客户端的一个接口,需要调用服务A-N。客户...

.NET, 大数据, 微服务 暂无评论 阅读(377)

基于docker 如何部署surging分布式微服务引擎

.NET, DevOps, 微服务, 系统架构 暂无评论 阅读(364)