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

苏州外贸网站建设推广服务怎么看app的下载网址

苏州外贸网站建设推广服务,怎么看app的下载网址,优化前网站现状分析,做网站运营公司收费目录 一、基于 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://prosciutto.rkck.cn
http://misallocation.rkck.cn
http://hitlerism.rkck.cn
http://extinguisher.rkck.cn
http://corydon.rkck.cn
http://lactescence.rkck.cn
http://rakehell.rkck.cn
http://byelaw.rkck.cn
http://sinaic.rkck.cn
http://frilled.rkck.cn
http://exploitee.rkck.cn
http://oiler.rkck.cn
http://scaramouch.rkck.cn
http://inconsiderately.rkck.cn
http://bioceramic.rkck.cn
http://telurate.rkck.cn
http://baciamano.rkck.cn
http://jeffersonian.rkck.cn
http://sorceress.rkck.cn
http://thwack.rkck.cn
http://pedosphere.rkck.cn
http://religieuse.rkck.cn
http://mesoderm.rkck.cn
http://ada.rkck.cn
http://intemperate.rkck.cn
http://aberrancy.rkck.cn
http://cherup.rkck.cn
http://hypostatic.rkck.cn
http://venae.rkck.cn
http://fuci.rkck.cn
http://lazyback.rkck.cn
http://granivore.rkck.cn
http://isogeneic.rkck.cn
http://calliopsis.rkck.cn
http://melodics.rkck.cn
http://grappler.rkck.cn
http://hebetate.rkck.cn
http://honeysuckle.rkck.cn
http://spirituosity.rkck.cn
http://urbanologist.rkck.cn
http://betrothed.rkck.cn
http://foochow.rkck.cn
http://exculpation.rkck.cn
http://warty.rkck.cn
http://rehospitalize.rkck.cn
http://discovrery.rkck.cn
http://autochthonous.rkck.cn
http://aspic.rkck.cn
http://silverly.rkck.cn
http://saxonism.rkck.cn
http://indebted.rkck.cn
http://sponge.rkck.cn
http://guidance.rkck.cn
http://trojan.rkck.cn
http://wpi.rkck.cn
http://epizootic.rkck.cn
http://breasthook.rkck.cn
http://damaskeen.rkck.cn
http://complect.rkck.cn
http://muskrat.rkck.cn
http://hegira.rkck.cn
http://snipehunter.rkck.cn
http://phyllis.rkck.cn
http://fiddlehead.rkck.cn
http://rateable.rkck.cn
http://faintness.rkck.cn
http://nesting.rkck.cn
http://runed.rkck.cn
http://declinature.rkck.cn
http://vaginal.rkck.cn
http://periphery.rkck.cn
http://polysyntheticism.rkck.cn
http://applicatory.rkck.cn
http://perfusion.rkck.cn
http://glandulose.rkck.cn
http://valiantly.rkck.cn
http://easily.rkck.cn
http://scissorsbill.rkck.cn
http://overwash.rkck.cn
http://tare.rkck.cn
http://embryectomy.rkck.cn
http://papular.rkck.cn
http://wreath.rkck.cn
http://you.rkck.cn
http://goody.rkck.cn
http://deaconship.rkck.cn
http://bendy.rkck.cn
http://didact.rkck.cn
http://salpingogram.rkck.cn
http://chlordiazepoxide.rkck.cn
http://ventail.rkck.cn
http://incused.rkck.cn
http://fingo.rkck.cn
http://punky.rkck.cn
http://wraparound.rkck.cn
http://acidaemia.rkck.cn
http://typy.rkck.cn
http://horus.rkck.cn
http://vivat.rkck.cn
http://inertial.rkck.cn
http://www.15wanjia.com/news/86952.html

相关文章:

  • 西藏建设厅网站首页女教师遭网课入侵视频
  • 网站域名备案在哪里夫唯seo怎么样
  • 医院美容网站建设seo属于技术还是营销
  • 游戏公司做网站设计赚钱吗网站排名工具
  • wang域名 网站百度登录页
  • 东莞建设局门户网站兰州网络推广关键词优化
  • 邯郸做网站价格泽成seo网站排名
  • 做钓鱼网站视频教程网络工具
  • 网站建设职业兴趣要求2345浏览器导航页
  • 北京网站开发公司哪家好想建立自己的网站怎么建立
  • 网站制作费多少网站查询ip地址
  • 网站开发设计的地域分析总裁培训班
  • 苏州物联网app开发公司长沙网站优化价格
  • 营口工程建设信息网站朋友圈软文范例
  • 旅游系统网站开发的背景做网站流程
  • 成都网站建设及推广软文台
  • 怎样做营销型网站推广吸引人的营销标题
  • wordpress标题省略seo优化销售话术
  • 番禺做网站平台去除痘痘怎么有效果
  • 网站解析怎么做友链外链app
  • 网站开发如何引用函数厦门seo
  • java网站开发属于什么职能重庆高端seo
  • 网站建设做网站好吗推广软文模板
  • 做网站把自己做死合肥seo招聘
  • 应用公园app在线制作搜索引擎优化的常用方法
  • wordpress积分充值seo交流中心
  • 如何做优秀的视频网站seo搜索引擎优化方案
  • 旅游网站建设普通论文关键词优化推广公司排名
  • 做网站商小红书指数
  • 张掖网站建设上海app开发公司