很多情況下基於wcf的複雜均衡都首選zookeeper,這樣可以擁有更好的控製粒度,但zk對C# 不大友好,實現起來相對來說比較麻煩,實際情況下,如果
你的負載機製粒度很粗糙的話,優先使用nginx就可以搞定,既可以實現複雜均衡,又可以實現雙機熱備,以最小的代碼量實現我們的業務,下面具體分享下。
一:準備的材料
1. 話不多說,一圖勝千言,圖中的伺服器都是採用vmware虛擬化,如下圖:
《 1》 三台windows機器,兩台WCF的windows伺服器承載(192.168.23.187,192.168.23.188),一台Client的伺服器(192.168.23.1)
《2》 一台的伺服器(192.168.23.1)
《2》 一台Centos機器,用來承載web複雜均衡nginx(192.168.23.190)。
《3》在所有的Client的Hosts檔案中增加host映射:【192.168.23.190 cluster.com】,方便透過網域名稱的形式存取nginx所在伺服器的ip位址。
二:環境搭建
1. WCF程序
既然是測試,肯定就是簡單的程序,程式碼就不完全給了。
《1》 HomeService實作類別程式碼如下(輸出目前server的ip位址,方便查看):
public class HomeService : IHomeService { public string DoWork(string msg) { var ip = Dns.GetHostAddresses(Dns.GetHostName()).FirstOrDefault(i => i.AddressFamily == AddressFamily.InterNetwork).ToString(); return string.Format("当前 request 由 server={0} 返回", ip); } }
《2》 App.Config代碼
<?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> </startup> <system.serviceModel> <behaviors> <serviceBehaviors> <behavior name=""> <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" /> <serviceDebug includeExceptionDetailInFaults="false" /> </behavior> </serviceBehaviors> </behaviors> <services> <service name="WcfService.HomeService"> <endpoint address="/HomeService" binding="basicHttpBinding" contract="WcfService.IHomeService"> <identity> <dns value="localhost" /> </identity> </endpoint> <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> <host> <baseAddresses> <add baseAddress="http://192.168.23.187:8733" /> </baseAddresses> </host> </service> </services> </system.serviceModel> </configuration>
因為windows的兩台機器的ip位址是192.168.23.187,192.168.23.188 ,所以部署的時候要注意一下config中的baseAddress位址。
2. centos上的nginx搭建
nginx我想大家用的還是比較多的,去官網下載最新的就好【nginx-1.13.6】 :http://nginx.org/en/download.html,下載之後,就是常規的三板斧安裝! ! !
[root@localhost nginx-1.13.6]# ./configure --prefix=/usr/myapp/nginx
#
然後在nginx的安裝目錄下方找到conf文件,修改裡面的nginx.conf 設定。
[root@localhost nginx]# cd conf
[root@localhost conf]# ls
fastcgi.conf koi-utf koi-win nginx.conf.default uwsgi_params.defaultfastcgi_params mime.types scgi_params localhost conf]# vim nginx.conf
#
詳細配置如下,注意下面「標紅」的地方,權重按照1:5的方式進行調用,關於其他的配置,大家可以在網上搜一下就可以了。
#user nobody; worker_processes 1; #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 { 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 on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; upstream cluster.com{ server 192.168.23.187:8733 weight=1; server 192.168.23.188:8733 weight=5; } server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; proxy_pass http://cluster.com; #设置主机头和客户端真实地址,以便服务器获取客户端真实IP proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; } #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; # } #} }
3. client端的程式建構
《1》 第一件事就是將 192.168.23.190 對應到本機的host中去,因為服務不提供給第三方使用,所以加host還是很輕鬆的。
192.168.23.190 cluster.com
《2》 然後就是client端程式加入服務引用,程式碼如下:
class Program { static void Main(string[] args) { for (int i = 0; i < 1000; i++) { HomeServiceClient client = new HomeServiceClient(); var info = client.DoWork("hello world!"); Console.WriteLine(info); System.Threading.Thread.Sleep(1000);14 } Console.Read(); } }
最後來執行以下程序,看看1000次循環中,是不是按照權重1:5 的方式對後端的wcf進行調用的? ? ?
#看到沒有,是不是很屌,我只需要透過cluster.com進行服務訪問,nginx會自動給我複雜均衡,這就是我們開發中非常簡化的wcf複雜均衡。
以上是使用nginx搭建高可用,高並發的wcf集群的詳細內容。更多資訊請關注PHP中文網其他相關文章!