docker部署netcore項目 nginx負載均衡

来源:https://www.cnblogs.com/SecondSun/archive/2020/05/09/12855865.html
-Advertisement-
Play Games

前言: 本文主要內容是docker部署netcore應用以及docker運行nginx實現負載均衡。到目前為止感覺微軟在跨平臺的方面雖然有較大的進步,但是和linux比還是有一定的差距,在學習docker,nginx以及Netcore 過程中網上能查找參考的資料還是比較有限的,所以在此記錄下遇到的問 ...


前言:

本文主要內容是docker部署netcore應用以及docker運行nginx實現負載均衡。到目前為止感覺微軟在跨平臺的方面雖然有較大的進步,但是和linux比還是有一定的差距,在學習docker,nginx以及Netcore 過程中網上能查找參考的資料還是比較有限的,所以在此記錄下遇到的問題以及踩到的各種坑,希望避免再次走彎路。

一.新建NET Core應用程式;

1.添加Docker支持,由於到目前為止,nginx還不支持windows容器,為了便於本機測試所以選用Linux容器,如下圖:

 

 

2.輸出請求處理,顯示當前請求IP以及埠號:

 

 

 3.編輯Dockerfile文件

  dockerfile文件指令說明:

  FROM -指定基礎鏡像(FROM是必備的指令,並且必須為第一條指令)

  WORKDIR-配置工作目錄

  EXPOSE-聲明鏡像內服務監聽的埠

  COPY-複製內容到鏡像

  ENTRYPOINT-啟動鏡像的預設人口命令

  ENV -設置環境變數

編輯後的dockerfile文件如下:

FROM microsoft/dotnet:2.2-aspnetcore-runtime AS base
WORKDIR /app
EXPOSE 8005
EXPOSE 443
ENV ASPNETCORE_URLS http://+:8005
COPY . .
ENTRYPOINT ["dotnet", "DockerDemo.dll"]

 右鍵屬性,選擇“如果較新則複製”

4.Docker發佈,

Release生成解決方案,定位到reliease文件夾,執行"docker build”指令,如下圖:

 

 在執行過程中,有可能會碰到“no such host”問題,重試幾次或者設置鏡像代理即可

ps: 鏡像版本後面有個空格+“ .”需留意 註意最後有個點,代表使用當前路徑的 Dockerfile 進行構建

運行 docker images查看當前鏡像:

 

可以看到已經成功構建。 

5.構建dockerdemo容器:

執行"docker run“指令,構建該鏡像的實例docker run -d -t -p 8006:8005  --name dockerdemo8006 dockerdemo:1.0,可以看到,容器已經構建成功:

 

瀏覽器輸入即可看到下列結果

 

 同理構建該鏡像的其他容器,分別為8007,8008;至此docker構建netcore鏡像已經完成,我們可以在Kitematic查看已經構建的容器;

 

二.Docker構建nginx容器實現負載均衡

1.執行“docker pull nginx“指令獲取鏡像,docker images 查看當前鏡像;

2.構建nginx鏡像容器

執行docker run -d -p 8003:80 --name dockernginxdemo nginx,其中-d表示後臺運行,-p表示開放的埠,將80埠代理到宿主8003埠,這樣訪問ip:8003就可以訪問nginx 80埠,--name表示容器名字,最後為鏡像名:標簽。

docker ps查看當前容器:

 

可以看出已經實例化鏡像文件。在瀏覽器中輸入localhost:8003出現如下界面則表示成功:

 

 

3.修改nginx配置文件:

該頁面是鏡像文件中自帶的一個html文件,我們需要將我們自己nginx的配置文件複製替換容器自帶的配置文件,進入容器中

docker exec -it dockernginxdemo/bin/bash 
cat /etc/nginx/nginx.conf

可以看到Nginx鏡像自帶的nginx配置文件信息

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}

可以看到這和nginx教程中的配置文件有一定的區別的,我自己在這兒踩了幾個坑,nginx中的配置文件是作為一個整體的,而鏡像中是預設包括兩個文件:default.conf和nginx.conf文件,下圖是nginx教程中的配置文件

#定義Nginx運行的用戶和用戶組
#user  nobody; 

#nginx進程數,建議設置為等於CPU總核心數。
worker_processes  1; 

#全局錯誤日誌定義類型,[ debug | info | notice | warn | error | crit ]
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#進程文件
#pid        logs/nginx.pid;

#工作模式與連接數上限
events {
    #單個進程最大連接數(最大連接數=連接數*進程數)
    worker_connections  1024;
}

#設定http伺服器
http {
    #文件擴展名與文件類型映射表
    include       mime.types;
    #預設文件類型
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    #開啟高效文件傳輸模式,sendfile指令指定nginx是否調用sendfile函數來輸出文件,對於普通應用設為 on,如果用來進行下載等應用磁碟IO重負載應用,可設置為off,以平衡磁碟與網路I/O處理速度,降低系統的負載。註意:如果圖片顯示不正常把這個改 成off。
    sendfile        on;

    #防止網路阻塞
    #tcp_nopush     on;


    #長連接超時時間,單位是秒
    #keepalive_timeout  0;
    keepalive_timeout  65;

    #開啟gzip壓縮輸出
    #gzip  on;

    #虛擬主機的配置
    server {

        #監聽埠
        listen       80;

        #功能變數名稱可以有多個,用空格隔開
        server_name  localhost;

        #預設編碼
        #charset utf-8;

        #定義本虛擬主機的訪問日誌
        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}
View Code

 

 如果直接將conf文件替換鏡像中的nginx文件的話,會出現“directive is not allowed here in /etc/nginx/conf.d/nginx.conf”這樣的問題,原因是在default.conf配置文件中,已經存在"server”節點,我們可以執行如下指令

docker cp f3d9ee01637a:/etc/nginx/conf.d/default.conf  E:/ngingconf/default.conf

將conf.d/default.conf文件複製到 E:/ngingconf/default.conf文件中,default.conf文件如下:

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}
View Code

可以看到,在default文件中已經存在server節點,所以不能直接複製自定義的nginx.conf文件到容器的nginx.conf文件中。有兩種解決方案,第一分別修改nginx.conf和default.conf文件;第二,將容器中的default.conf文件內容刪除,然後再複製自定義的conf文件覆蓋掉鏡像中nginx.conf的配置文件。這裡,我們採用第一種方法,修改鏡像中Nginx.conf以及default.conf的局部節點;

首先,執行

docker cp f3d9ee01637a:/etc/nginx/nginx.conf  E:/ngingconf/nginx.conf

指令,將鏡像文件中的nginx.conf文件複製到本地,打開E:/ngingconf/nginx.conf,編輯配置文件如下:

 1 user  nginx;
 2 worker_processes  1;
 3 
 4 error_log  /var/log/nginx/error.log warn;
 5 pid        /var/run/nginx.pid;
 6 
 7 
 8 events {
 9     worker_connections  1024;
10 }
11 
12 
13 http {
14 
15     #集群站點配置
16     upstream nginxtest.com{
17         #server    127.0.0.1:8887 weight=1;#伺服器配置   WEIGHT是權重的意思,權重越大,分配的概率越大。    
18         server    127.0.0.1:8006 weight=1;
19         server    127.0.0.1:8007 weight=1;
20         server    127.0.0.1:8008 weight=1;
21     }
22 
23 
24 
25     include       /etc/nginx/mime.types;
26     default_type  application/octet-stream;
27 
28     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
29                       '$status $body_bytes_sent "$http_referer" '
30                       '"$http_user_agent" "$http_x_forwarded_for"';
31 
32     access_log  /var/log/nginx/access.log  main;
33 
34     sendfile        on;
35     #tcp_nopush     on;
36 
37     keepalive_timeout  65;
38 
39     #gzip  on;
40 
41     include /etc/nginx/conf.d/*.conf;
42 }
View Code

nginx.conf文件中,我們添加了

 

 

  節點指令,配置服務集群,對應之前的三個netcore應用的埠8006,8007,8008。然後執行

docker cp E:/ngingconf/nginx.conf f3d9ee01637a:/etc/nginx/nginx.conf

執行,將本地修改後的nginx.conf文件拷貝到鏡像文件中;同理,執行

docker cp f3d9ee01637a:/etc/nginx/conf.d/default.conf  E:/ngingconf/default.conf

將鏡像文件中的default.conf文件複製到本地,打開E:/ngingconf/default.conf,編輯配置文件如下:

 1 server {
 2     listen       80;
 3     server_name  localhost;
 4 
 5     #charset koi8-r;
 6     #access_log  /var/log/nginx/host.access.log  main;
 7 
 8      #緩存文件路由
 9     location ~ .*(\.(js|css|jpg|svg)).* {
10 
11         proxy_pass http://nginxtest.com;
12         proxy_cache_valid 200;
13         expires 3d;
14     }
15     #集群站點路由
16     location / {
17 
18         proxy_pass http://nginxtest.com;  #http://nginxtest.com對應upstream後面的名稱加上http
19         proxy_http_version 1.1;
20     proxy_redirect default;
21 
22         proxy_set_header Upgrade $http_upgrade; 
23         proxy_set_header Connection keep-alive;
24         proxy_set_header Host $host;
25         proxy_cache_bypass $http_upgrade;
26 
27         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
28     }
29 }
View Code

 註意 集群站點中“proxy_pass”後面參數名稱需要和nginf.conf文件中集群名稱一致。隨後執行cp指令覆蓋鏡像文件即可;

4.測試

 至此docker 部署nginx反向代理已經完成,預期效果是在網站中輸入localhost:8003就會訪問不同的埠號實現負載均衡實際效果運行卻是。。。

 

不甘心,有試了幾遍,還是這個結果 後來查看了下Kitematic,日誌果然有其他問題:

 

 大概就是無法連接到集群里的伺服器,推測了下應該是容器間的通信問題,於是驗證了下,用IIS而不是容器發佈了應用然後用docker部署nginx負載均衡,其他步驟一樣,果然可以直接訪問而不會出現該問題,於是開始著手解決這個問題

 


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

-Advertisement-
Play Games
更多相關文章
  • 前言 如果我們希望為自己的網站增添微信掃碼收款功能,用於收取一些服務費用,為個人網站提供自動化有償服務的話,那我們有哪些方案呢? ​首先,我們先看下效果,以下是服務端的收款二維碼的發起示例演示: 其次,我們再看看手機端 微信掃碼支付的演示: 我們手機端會將收款的消息推送到伺服器API。其中介面信息定 ...
  • 起因:github日推郵件中來了個BlogEngine.NET,出於好奇然後就點擊鏈接進去查看了下,發現這TM的太適合.net新手搭建博客網站了。以前的我一直想搭建個自己的博客網站,然後就產生了http://youli77.com/,這是我第一次用來學習asp.net core 2.0的產物(寫的我 ...
  • 參考文檔: https://gist.github.com/ssippe/8fc11c4d7e766e66f06db0431dba3f0ahttps://github.com/dvsekhvalnov/jose-jwt https://mac-blog.org.ua/dotnet-core-fire ...
  • 無敵模糊學習視頻:https://www.bilibili.com/video/BV15x411x7WN?p=3 第三集:實現一個頁面,新建devexpress winform blankApplication。 使用RibbonControl,添加幾組PageGroup。PageGroup添加幾個 ...
  • 1. 程式集 Debugger:調試類 引用集:System.Diagnostics.Debug.dll 2. 方法使用 1.調用系統預設的瀏覽器方法: //調用系統預設的瀏覽器 System.Diagnostics.Process.Start("http://blog.csdn.net/testc ...
  • 不多說: 若要返回true,改【ldc.i4.0】為【ldc.i4.1】。 -文畢- ...
  • Pool /// <summary> /// 與每個客戶Socket相關聯,進行Send和Receive投遞時所需要的參數 /// </summary> public class IoContextPool { List<SocketAsyncEventArgs> pool; //為每一個Socke ...
  • public override int SaveChanges() { var entries = ChangeTracker.Entries().Where(x => x.State != EntityState.Unchanged).GroupBy(x => new { x.State, x.E ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...