溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么使用Nginx搭建WCF集群

發(fā)布時(shí)間:2022-02-16 15:58:55 來源:億速云 閱讀:172 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“怎么使用Nginx搭建WCF集群”,在日常操作中,相信很多人在怎么使用Nginx搭建WCF集群?jiǎn)栴}上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”怎么使用Nginx搭建WCF集群”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

怎么使用Nginx搭建WCF集群

一:準(zhǔn)備的材料

\1. 話不多說,一圖勝千言,圖中的服務(wù)器都是采用vmware虛擬化,如下圖:

怎么使用Nginx搭建WCF集群

三臺(tái)windows機(jī)器 ,兩個(gè)WCF的windows服務(wù)器承載(192.168.23.187,192.168.23.188),一臺(tái)Client的服務(wù)器(192.168.23.1)

一臺(tái)Centos機(jī)器,用來承載web復(fù)雜均衡nginx(192.168.23.190)。

在所有的Client的Hosts文件中增加host映射:【192.168.23.190 cluster.com】,方便通過域名的形式訪問nginx所在服務(wù)器的ip地址。

二:環(huán)境搭建

1、WCF程序

既然是測(cè)試,肯定就是簡(jiǎn)單的程序,代碼就不完全給出了。

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("當(dāng)前 request 由 server={0} 返回", ip);
   }
}

App.Config代碼

<?xml  version="1.0" encoding="utf-8" ?>"v4.0" sku=".NETFramework,Version=v4.5.2" />"">"true" httpsGetEnabled="true" />"false" />"WcfService.HomeService">"/HomeService" binding="basicHttpBinding" contract="WcfService.IHomeService">"localhost" />"mex" binding="mexHttpBinding" contract="IMetadataExchange" />"http://192.168.23.187:8733" />

因?yàn)閣indows的兩臺(tái)機(jī)器的ip地址是192.168.23.187,192.168.23.188,所以部署的時(shí)候注意一下config中的baseAddress地址。

2、centos上的nginx搭建

nginx我想大家用的還是比較多的,去官網(wǎng)下載最新的就好【nginx-1.13.6】:http://nginx.org/en/download.html,下載之后,就是常規(guī)的三板斧安裝!!!

[root@localhost nginx-1.13.6]# ./configure --prefix=/usr/myapp/nginx[root@localhost nginx-1.13.6]# make && make install

然后在nginx的安裝目錄下面找到conf文件,修改里面的nginx.conf 配置。

詳細(xì)配置如下,注意下面“標(biāo)紅”的地方,權(quán)重按照1:5的方式進(jìn)行調(diào)用,關(guān)于其他的配置,大家可以在網(wǎng)上搜一下就可以了。

#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;#設(shè)置主機(jī)頭和客戶端真實(shí)地址,以便服務(wù)器獲取客戶端真實(shí)IPproxy_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端的程序搭建

第一件事就是將 192.168.23.190 映射到本機(jī)的host中去,因?yàn)榉?wù)不提供給第三方使用,所以加host還是很輕松的。

192.168.23.190 cluster.com

怎么使用Nginx搭建WCF集群

然后就是client端程序添加服務(wù)引用,因?yàn)樘砑恿薶ost映射,所以服務(wù)引用地址就是”http://cluster.com“。 代碼如下:

class Program
{
static void Main(string[] args)
{for (int i = 0; i "hello world!");
Console.WriteLine(info);
System.Threading.Thread.Sleep(1000);
}
Console.Read();
}

最后來執(zhí)行以下程序,看看1000次循環(huán)中,是不是按照權(quán)重1:5 的方式對(duì)后端的wcf進(jìn)行調(diào)用的???

怎么使用Nginx搭建WCF集群
怎么使用Nginx搭建WCF集群

看到?jīng)]有,是不是很牛逼,我只需要通過cluster.com進(jìn)行服務(wù)訪問,nginx會(huì)自動(dòng)給我復(fù)雜均衡,這就是我們開發(fā)中非常簡(jiǎn)單化的wcf復(fù)雜均衡。

到此,關(guān)于“怎么使用Nginx搭建WCF集群”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI