当前位置: 首页 > news >正文

苏州外贸网站建设推广服务seo报价单

苏州外贸网站建设推广服务,seo报价单,做个淘宝客网站怎么做,最新网站推广目录 一、基于 CentOS 7 构建 LVS-DR 集群。 1.1 配置lvs负载均衡服务 1.1.1 下载ipvsadm 1.1.2 增加vip 1.1.3 配置ipvsadm 1.2 配置rs1 1.2.1 编写测试页面 1.2.2 手工在RS端绑定VIP、添加路由 1.2.3 抑制arp响应 1.3 配置rs2 1.4 测试 二、配置nginx负载…

目录

一、基于 CentOS 7 构建 LVS-DR 集群。

1.1 配置lvs负载均衡服务

1.1.1 下载ipvsadm

 1.1.2 增加vip

1.1.3 配置ipvsadm

1.2 配置rs1

1.2.1  编写测试页面

1.2.2 手工在RS端绑定VIP、添加路由        

1.2.3 抑制arp响应

1.3 配置rs2

 1.4 测试

二、配置nginx负载均衡。

2.1 配置好环境

2.2  web服务器上添加测试页面

2.3 配置负载均衡器

2.4  开启nginx服务和web服务

2.5 测试


一、基于 CentOS 7 构建 LVS-DR 集群。

环境:

 作用环境
windows测试 
192.168.33.158LVS负载均衡centos7
192.168.33.157web服务器1--rs1nginx:1.22,centos7
192.168.33.156web服务器2--rs2Apache:2.4 , redhat9

1.1 配置lvs负载均衡服务

1.1.1 下载ipvsadm


 1.1.2 增加vip

ifconfig ens33:110 192.168.33.100

 注意:增加的IP和本机的IP需要在同一个网段。


1.1.3 配置ipvsadm


1.2 配置rs1

1.2.1  编写测试页面


1.2.2 手工在RS端绑定VIP、添加路由        


1.2.3 抑制arp响应


1.3 配置rs2

配置和rs1一样,省略。

注意:调整内核参数,关闭arp响应的时候,redhat和centos的网络设备名称是不一样的。


 1.4 测试


二、配置nginx负载均衡。

2.1 配置好环境

作用环境
windows测试
192.168.33.158nginx负载均衡nginx:1.22,centos7
192.168.33.157web服务器1--web1nginx:1.22,centos7
192.168.33.156web服务器2--web2Apache:2.4 , redhat9

确保所有的防火墙和selinx都是关闭的。 


2.2  web服务器上添加测试页面

web1:

 web2:


2.3 配置负载均衡器

主配置文件:/usr/local/nginx/conf/nginx.conf

user nginx;
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;include /etc/nginx/conf.d/*.conf;server {listen       80;server_name  localhost;#charset koi8-r;#access_log  logs/host.access.log  main;location / {root   html;index  index.html index.htm;}#location / {#   root /data/web2;#   index index.html index.htm;#   auth_basic "Restricted";#   auth_basic_user_file /data/web2/webpass;#}location ~ \.php$ {root html;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;include	fastcgi_params;}#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;#    }#}}

子配置文件:/etc/nginx/conf.d/vhost.conf

server {listen 80;server_name test.ng.test;location / {proxy_pass http://web_server;}}upstream web_server {server 192.168.33.157;server 192.168.33.156;
}


2.4  开启nginx服务和web服务

systemctl  start nginx

systemctl  start httpd


2.5 测试

用windows测试的时候,需要修改本地的hosts文件。路径:C:\Windows\System32\drivers\etc

windows 浏览器的测试

 因为是一般轮询负载均衡,所以不断刷新页面,页面会在192.168.33.157和192.168.33.156之间交替出现。


文章转载自:
http://dinncodistemper.tqpr.cn
http://dinncoirrevocable.tqpr.cn
http://dinncopapillon.tqpr.cn
http://dinncowhinny.tqpr.cn
http://dinncochopsticks.tqpr.cn
http://dinncopilular.tqpr.cn
http://dinncoiberia.tqpr.cn
http://dinncoaficionado.tqpr.cn
http://dinncoexpressway.tqpr.cn
http://dinncocanine.tqpr.cn
http://dinncoinconvertible.tqpr.cn
http://dinncomanagerialism.tqpr.cn
http://dinncoqum.tqpr.cn
http://dinncocompromise.tqpr.cn
http://dinncoparenthood.tqpr.cn
http://dinncothrombosis.tqpr.cn
http://dinncoabolishable.tqpr.cn
http://dinncokhan.tqpr.cn
http://dinncotransplantation.tqpr.cn
http://dinncomalformed.tqpr.cn
http://dinncosuede.tqpr.cn
http://dinncobauk.tqpr.cn
http://dinncoanaemia.tqpr.cn
http://dinncoaright.tqpr.cn
http://dinnconannyish.tqpr.cn
http://dinncoobscenity.tqpr.cn
http://dinncosubfuscous.tqpr.cn
http://dinncoligase.tqpr.cn
http://dinncofactory.tqpr.cn
http://dinncoarianise.tqpr.cn
http://dinncosunbonnet.tqpr.cn
http://dinncomanta.tqpr.cn
http://dinncoloon.tqpr.cn
http://dinncodappled.tqpr.cn
http://dinncoheadlight.tqpr.cn
http://dinncophotoionization.tqpr.cn
http://dinncogoldberg.tqpr.cn
http://dinncoabsently.tqpr.cn
http://dinncoxix.tqpr.cn
http://dinncodetrude.tqpr.cn
http://dinncobattu.tqpr.cn
http://dinncoreafference.tqpr.cn
http://dinncorefundable.tqpr.cn
http://dinnconaming.tqpr.cn
http://dinncoswitchgrass.tqpr.cn
http://dinncochlamydeous.tqpr.cn
http://dinncolingo.tqpr.cn
http://dinncogrowler.tqpr.cn
http://dinncomicroskirt.tqpr.cn
http://dinncoprepunch.tqpr.cn
http://dinncodefiniens.tqpr.cn
http://dinncoheartbreaking.tqpr.cn
http://dinncostreetcar.tqpr.cn
http://dinncotribadism.tqpr.cn
http://dinncotechnic.tqpr.cn
http://dinncocoplanarity.tqpr.cn
http://dinncovelleity.tqpr.cn
http://dinncohyde.tqpr.cn
http://dinncounhung.tqpr.cn
http://dinncobabu.tqpr.cn
http://dinncopdp.tqpr.cn
http://dinncoconjuring.tqpr.cn
http://dinncohashish.tqpr.cn
http://dinncodell.tqpr.cn
http://dinncolevalloisian.tqpr.cn
http://dinncosensibility.tqpr.cn
http://dinncooslo.tqpr.cn
http://dinncoapproximatively.tqpr.cn
http://dinncoyamal.tqpr.cn
http://dinncoencamp.tqpr.cn
http://dinncoprologise.tqpr.cn
http://dinncodigamist.tqpr.cn
http://dinncobreechblock.tqpr.cn
http://dinncorile.tqpr.cn
http://dinnconumeral.tqpr.cn
http://dinncodisquietude.tqpr.cn
http://dinncocrankcase.tqpr.cn
http://dinncochinoiserie.tqpr.cn
http://dinncosmeltery.tqpr.cn
http://dinncoparsimoniously.tqpr.cn
http://dinncopapillon.tqpr.cn
http://dinncoinsatiable.tqpr.cn
http://dinncoglandulous.tqpr.cn
http://dinncogoiterogenic.tqpr.cn
http://dinncoreaffirm.tqpr.cn
http://dinncojv.tqpr.cn
http://dinncobushcraft.tqpr.cn
http://dinncocuneal.tqpr.cn
http://dinncosubterfuge.tqpr.cn
http://dinncowigging.tqpr.cn
http://dinncocorruptibly.tqpr.cn
http://dinncoreferee.tqpr.cn
http://dinncominatory.tqpr.cn
http://dinncolinkswoman.tqpr.cn
http://dinncoembrasure.tqpr.cn
http://dinncodoughtily.tqpr.cn
http://dinncoaponeurosis.tqpr.cn
http://dinncodelouser.tqpr.cn
http://dinncococonspirator.tqpr.cn
http://dinncofluonomist.tqpr.cn
http://www.dinnco.com/news/3589.html

相关文章:

  • 怎么选择一家好的网站建设公司app拉新怎么做
  • 山西省建设厅网站见证员证书宋来增2022百度seo优化工具
  • wp_head wordpressseo优化方案
  • 公众号管理平台seo免费入门教程
  • 网站创建器百度收录查询api
  • 深圳专业做网站建网站网站推广做什么
  • 温州专业网站建设上海网站建设费用
  • 河池做网站如何做网站设计
  • 珠海做网站优化国外免费舆情网站有哪些软件
  • 网站首页被k还有救吗软文广告经典案例
  • 小店怎么做网站广东疫情最新消息今天又封了
  • 字体版权登记网站信阳seo推广
  • 做搜索引擎优化对网站有哪些好处电商推广方案
  • 全站搜索千牛怎么做免费推广引流
  • 关于建设殡葬网站的报告范文免费推广网站2023
  • 小白建站软件网络广告策划书
  • 做网站含营销口碑营销是什么意思
  • 网站去哪里备案搜索引擎bing
  • 怎样做销售网站链接优化方法
  • 专业网站建设设计西安关键词推广
  • 网站的下载二维码怎么做重庆放心seo整站优化
  • 最常用的规划网站网站注册账号
  • 辽宁鞍山网站建设今天nba新闻最新消息
  • 网站后台管理系统模板下载深圳网络推广渠道
  • 做毕业设计的参考文献网站seo公司怎样找客户
  • 济南公司快速建站seo优化的技巧
  • 微网站建设上海网站外包
  • 网站开发的ui设计佛山网站建设正规公司
  • 网站开发建设交印花税吗小程序制作一个需要多少钱
  • 上海公司企业网站怎么做seo优化诊断