03 .NET CORE 2.2 使用OCELOT -- Docker中的Consul

来源:https://www.cnblogs.com/zhanglinfeng715/archive/2019/10/18/11696946.html
-Advertisement-
Play Games

部署consul-docker鏡像 先搜索consul的docker鏡像 然後選擇了第一個,也就是官方鏡像 下載鏡像 然後運行鏡像 docker run -d --name consul -v /home/root/config:/config --restart=always\ -p 8300:8 ...


部署consul-docker鏡像

先搜索consul的docker鏡像

docker search consul

然後選擇了第一個,也就是官方鏡像

 

 下載鏡像

docker pull consul

然後運行鏡像

docker run -d --name consul -v /home/root/config:/config --restart=always\
-p 8300:8300 \
-p 8301:8301 \
-p 8301:8301/udp \
-p 8302:8302 \
-p 8302:8302/udp \
-p 8400:8400 \
-p 8500:8500 \
consul agent -server \
-bootstrap-expect 1 \
-ui \
-client 0.0.0.0

 

consul中每個啟動參數的含義,參考了以下鏈接:

https://www.bitdoom.com/2017/09/07/p125/

https://yq.aliyun.com/articles/536508

https://blog.csdn.net/yinwaner/article/details/80762757

https://blog.csdn.net/qq_36228442/article/details/89085373

https://www.cnblogs.com/PearlRan/p/11225953.html

https://www.cnblogs.com/magic-chenyang/p/7975677.html

 

註冊服務

參考鏈接:

https://blog.csdn.net/hailang2ll/article/details/82079192

 

新建一個common項目

 

  

新建ConsulBuilderExtensions.cs 、ConsulService.cs、HealthService.cs

 1 using Consul;
 2 using Microsoft.AspNetCore.Builder;
 3 using Microsoft.AspNetCore.Hosting;
 4 using System;
 5 using System.Collections.Generic;
 6 using System.Linq;
 7 using System.Threading.Tasks;
 8 
 9 namespace Test.WebApi.Common
10 {
11     public static class ConsulBuilderExtensions
12 
13     {
14 
15         // 服務註冊
16 
17         public static IApplicationBuilder RegisterConsul(this IApplicationBuilder app, IApplicationLifetime lifetime, HealthService healthService, ConsulService consulService)
18 
19         {
20 
21             var consulClient = new ConsulClient(x => x.Address = new Uri($"http://{consulService.IP}:{consulService.Port}"));//請求註冊的 Consul 地址
22 
23             var httpCheck = new AgentServiceCheck()
24 
25             {
26 
27                 DeregisterCriticalServiceAfter = TimeSpan.FromSeconds(5),//服務啟動多久後註冊
28 
29                 Interval = TimeSpan.FromSeconds(10),//健康檢查時間間隔,或者稱為心跳間隔
30 
31                 HTTP = $"http://{healthService.IP}:{healthService.Port}/api/health",//健康檢查地址
32 
33                 Timeout = TimeSpan.FromSeconds(5)
34 
35             };
36 
37             // Register service with consul
38 
39             var registration = new AgentServiceRegistration()
40 
41             {
42 
43                 Checks = new[] { httpCheck },
44 
45                 ID = healthService.Name + "_" + healthService.Port,
46 
47                 Name = healthService.Name,
48 
49                 Address = healthService.IP,
50 
51                 Port = healthService.Port,
52 
53                 Tags = new[] { $"urlprefix-/{healthService.Name}" }//添加 urlprefix-/servicename 格式的 tag 標簽,以便 Fabio 識別
54 
55             };
56 
57             consulClient.Agent.ServiceRegister(registration).Wait();//服務啟動時註冊,內部實現其實就是使用 Consul API 進行註冊(HttpClient發起)
58 
59             lifetime.ApplicationStopping.Register(() =>
60 
61             {
62 
63                 consulClient.Agent.ServiceDeregister(registration.ID).Wait();//服務停止時取消註冊
64 
65             });
66 
67             return app;
68 
69         }
70 
71     }
72 }

 

 1 namespace Test.WebApi.Common
 2 {
 3     public class ConsulService
 4 
 5     {
 6 
 7         public string IP { get; set; }
 8 
 9         public int Port { get; set; }
10 
11     }
12 }

 

 1 namespace Test.WebApi.Common
 2 {
 3     public class HealthService
 4     {
 5         public string Name { get; set; }
 6 
 7         public string IP { get; set; }
 8 
 9         public int Port { get; set; }
10     }
11 }

 

兩個webapi項目引用這個common項目

並修改各自的 startup.cs

 1 public void Configure(IApplicationBuilder app, IHostingEnvironment env, IApplicationLifetime lifetime)
 2         {
 3             if (env.IsDevelopment())
 4             {
 5                 app.UseDeveloperExceptionPage();
 6             }
 7             else
 8             {
 9                 // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
10                 app.UseHsts();
11             }
12             ConsulService consulService = new ConsulService()
13             {
14                 IP = Configuration["Consul:IP"],
15                 Port = Convert.ToInt32(Configuration["Consul:Port"])
16             };
17             HealthService healthService = new HealthService()
18             {
19                 IP = Configuration["Service:IP"],
20                 Port = Convert.ToInt32(Configuration["Service:Port"]),
21                 Name = Configuration["Service:Name"],
22             };
23 
24             app.RegisterConsul(lifetime, healthService, consulService);
25 
26             //app.UseConsul();
27             app.UseHttpsRedirection();
28             app.UseMvc();
29         }

修改 appsettings.json。 192.168.2.16是本機地址。192.168.2.29是docker中consul的地址。 兩個項目的配置類似,區別是本地項目的埠9001、9002。

 1 {
 2   "Logging": {
 3     "LogLevel": {
 4       "Default": "Warning"
 5     }
 6   },
 7   "AllowedHosts": "*",
 8 
 9   "Service": {
10     "Name": "ApiService",
11     "IP": "192.168.2.16",
12     "Port": "9001"
13   },
14   "Consul": {
15     "IP": "192.168.2.29",
16     "Port": "8500"
17   }
18 }

 

IIS部署 .NET CORE 2.2

參考鏈接:

https://www.cnblogs.com/wxlv/p/netcore-to-iis.html

 

部署期間遇到過以下問題

HTTP Error 500.35 - ANCM Multiple In-Process Applications in same Process ASP.NET Core 3

解決方法:兩個webapi項目 用不一樣的應用池。

 

 

部署完成後,測試下 各自項目的 /api/health介面是否正常。

 

 

測試網關項目

修改網關項目的配置configuration.json

 1 {
 2   "ReRoutes": [
 3     {
 4       "UseServiceDiscovery": true,
 5       "DownstreamPathTemplate": "/{url}",
 6       "DownstreamScheme": "http",
 7       "ServiceName": "ApiService",
 8       "LoadBalancerOptions": {
 9         "Type": "RoundRobin"
10       },
11       "UpstreamPathTemplate": "/{url}",
12       "UpstreamHttpMethod": [ "Get" ],
13       "ReRoutesCaseSensitive": false
14     }
15   ],
16   "GlobalConfiguration": {
17     "ServiceDiscoveryProvider": {
18       "Host": "192.168.2.29",
19       "Port": 8500,
20       "Type": "PollConsul",
21       "PollingInterval": 100
22     }
23   }
24 }

修改 startup.cs

 1 public void ConfigureServices(IServiceCollection services)
 2         {
 3             services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
 4             services.AddOcelot(new ConfigurationBuilder()
 5                     .AddJsonFile("configuration.json")
 6                     .Build())
 7                     .AddConsul();
 8         }
 9 
10         // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
11         public async void Configure(IApplicationBuilder app, IHostingEnvironment env)
12         {
13             if (env.IsDevelopment())
14             {
15                 app.UseDeveloperExceptionPage();
16             }
17             else
18             {
19                 // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
20                 app.UseHsts();
21             }
22             await app.UseOcelot();
23             app.UseHttpsRedirection();
24             app.UseMvc();
25         }

F5啟動項目

 

 

 

 

 

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 前言 在我之前一篇隨筆里(戳我),我們知道,一個引用類型的對象,包含了2個額外的開銷,一個是SBI,一個是MT。我們接下來看看SBI到底有多神秘。。。不是FBI哈。。。 SBI的4個用途 1。線程同步 lock的時候會用到,(戳我),這裡不再演示,不過下麵我想用lldb來一探究竟。 先來看下我們的代 ...
  • 在VS的程式包管理控制臺中輸入Install package MySql.Data時,預設安裝最新的版本8.0.18, 但是安裝完成後,發現包並沒有添加到項目的引用列表中, 在解決方案的packages文件夾中找到8.0.18對應的文件夾MySql.Data.8.0.18,發現其中並沒有相應dll文 ...
  • using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms; namespace WindowsFormsApplication8{ static class Program { ...
  • C# -- 優先獲取電腦C盤之外的磁碟來保存數據 1. 優先獲取電腦C盤之外的磁碟來保存數據。沒有其他盤則使用C盤。 ...
  • 最近因為項目需要調度作業服務,之前看張隊推薦過一篇https://www.cnblogs.com/yudongdong/p/10942028.html 故直接拿過來實操,發現很好用,簡單、方便 執行周期webapi任務,nice 發佈到生產環境,順便看看伺服器資源情況,我艹,記憶體,每s漲1M,漲到5 ...
  • 獲取伺服器地址類型分多種,以下記錄 1、HttpContext.Current.Server.MapPath("~/File") 返回的值為 D:\3Project\Code\MobileService\WebApi\File。 本地服務:此路徑為項目所在磁碟地址根目錄。 部署伺服器:為部署文件所在 ...
  • 之前一直開發Winfrom程式,由於近一段時間轉開發Wpf程式,剛好拜讀劉鐵錳《深入淺出WPF》對此有一些理解,如有誤導指出,還望斧正!!! 說道WPF數據驅動的編程思想,MVVM,是為WPF量身定做的模式,該模式充分利用了WPF的數據綁定機制,最大限度地降低了Xmal文件和CS文件的耦合度,也就是 ...
  • @[toc] 前言 時間過得好快,在之前升級到3.0之後,就感覺好久沒再動過啥東西了,之前有問到Swagger的中文漢化,雖說我覺得這種操作的意義不是太大,也是多少鼓搗了下,其實個人感覺就是元素內容替換,既然可以執行js了那不就是網頁上隨便搞了,所以就沒往下再折騰,但是現在需要用到Excel的操作了 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...