`

【ngnix】进行负载配置

 
阅读更多
1, 测试环境
a) 3台centos虚拟机IP分别为190,191,192
b) 安装软件三台安装nginx。
在http://nginx.org/下载需要版本
tar -zxvf pcre-8.21.tar.gz
cd pcre-8.21
./configure
make
make install
启动nigix并进行访问。
/usr/local/nginx/sbin/nginx -c /root/nginx-1.6.2/conf/nginx.conf
后面参数为配置文件地址。因为下载地址为root下故在/root/nginx-1.6.2/conf/nginx.conf。
修改vi /usr/local/nginx/html/index.html,用于区分不同的nginx的访问
<title>Welcome to nginx!本地IP地址 web page</title>
将对应IP进行测试访问。
2, 使用191作为主服务器,所有访问均通过191负载到190,191或192上。
修改191上/root/nginx-1.6.2/conf/nginx.conf配置文件
加入
upstream a.com {
      least_conn;    //使用负载的策略
      server  192.168.0.190:80;
      server  192.168.0.192:80;
}
修改:
        location / {
            root   html;
            index  index.html index.htm;
        proxy_pass         http://a.com;
        proxy_set_header   Host             $host;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
        }
注意上面红色部分.
重启
重新加载配置
kill -HUP $nginx_pid
或者
/usr/nginx/sbin/nginx -s reload
但在加载前最好检查一下配置文件:
nginx -t -c /usr/nginx/conf/nginx.conf
或者
/usr/nginx/sbin/nginx -t
访问 http://192.168.0.191进行访问测试。 页面跳转190或192.


3, 对自己进行负载
问题:使用了三台nginx却只有两台可以进行访问,那么还有一台也像作为访问对象怎么办?
在191上加入多端口监听。多一个server配置。
    server {
        listen       8080;
        server_name  192.168.0.200;

        #charset koi8-r;

        #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;
    #    }
    #}
并upstram配置中:
upstream a.com {
      least_conn;
      server  192.168.0.191:8080;
      server  192.168.0.190:80;
      server  192.168.0.192:80;
}
测试访问。即可。
分享到:
评论

相关推荐

    ngnix+tomcat负载聚合配置笔记

    ### ngnix+tomcat负载均衡配置详解 #### 一、引言 随着互联网技术的飞速发展,网站面临着越来越大的访问压力。如何确保网站在面对大量用户的同时还能保持高效稳定的运行,成为了一个亟待解决的问题。传统的单一...

    ngnix + tomcat 负载均衡配置

    配置`Nginx`进行负载均衡的关键在于`nginx.conf`文件。打开此文件,我们需要在http或server块中添加一个upstream模块。例如: ```nginx upstream backend { server tomcat1.example.com weight=2; server tomcat2...

    ngnix搭建负载均衡redis-session共享

    在构建高性能、高可用性的Web服务时,使用Nginx作为负载均衡器是常见的实践。Nginx以其高效的反向代理能力...文档`ngnix-redis-tomcat session共享.docx`可能包含了详细的步骤和示例,建议参考以获取更具体的配置信息。

    freeswitch ngnix wss反向代理,jssip配置

    freeswitch支持UDP、TCP、WS(websocket)、WSS方式进行注册,而反向代理是指通过nginx配置,通过WSS的方式连接WS,这样使得freeswitch连接对外是加密的;当然freeswitch本身是支持WSS的, 用ngnix一般除了反向代理,...

    ngnix负载均衡测试

    在这个小示例中,我们将聚焦于使用Nginx作为负载均衡器,结合三个Tomcat应用服务器进行测试。Nginx是一款高性能的HTTP和反向代理服务器,而Tomcat则是一款广泛使用的Java Servlet容器。通过Nginx的upstream模块,...

    Suse Linux 同机部署两个Ngnix负载均衡服务

    ### Suse Linux 同机部署两个Ngnix负载均衡服务 #### 一、部署规划 在Suse Linux环境中实现同一台服务器上部署两个Nginx负载均衡服务的需求,旨在为不同的应用提供高效的流量管理和负载分发。为了确保系统的稳定性...

    ngnix+tomcat集群负载

    【知识点详解】 ...通过上述配置,可以构建一个简单的Nginx+Tomcat负载均衡环境,以提高Web应用的可扩展性和可靠性。在实际生产环境中,还需要考虑更多的优化和安全措施,如SSL/TLS配置、限速、防火墙规则等。

    ngnix+tomcat 负载小例

    下面将详细介绍如何利用`Nginx`与`Tomcat`进行负载均衡配置,以及两者结合的优势和具体操作步骤。 首先,`Nginx`作为前端服务器,它的优势在于处理静态资源的能力非常强,能够有效缓解后端应用服务器的压力。`...

    负载均衡ngnix下载

    在Nginx中,负载均衡的配置主要在`http`或者`stream`上下文中的`upstream`块中进行。以下是一个简单的`upstream`配置示例: ```nginx upstream backend_servers { server backend1.example.com; server backend2....

    Ngnix+php5完整环境配置加文件

    1. **安装Nginx**:你可以从Nginx官方网站下载Windows版本的安装包,然后按照向导进行安装。安装过程中,你可以选择自定义安装路径,以便于管理。 2. **安装MySQL**:MySQL是一个流行的开源关系型数据库管理系统,...

    redHat安装ngnix,以及负载均衡配置-附件资源

    redHat安装ngnix,以及负载均衡配置-附件资源

    nginx+tomcat+windows

    ### NGINX + TOMCAT 在 Windows 下的负载均衡配置详解 #### 一、项目背景及目标 本案例旨在实现一个基于Windows平台的NGINX与TOMCAT的负载均衡集群配置。具体而言,通过配置NGINX作为前端HTTP服务器,后端连接两个...

    ngnix + memcached + tomcat6负载均衡中session复制依赖jar全

    `Nginx`具有高效、轻量级的特点,能够处理大量的并发连接,并且配置灵活,可以进行复杂的路由规则设置。 其次,`Tomcat6`是一个广泛使用的Java Servlet容器,用于部署和运行Java Web应用程序。在多服务器环境中,...

    ngnix.rar_ngnix学习视频_ngnix视频_ngnix视频教程_怎样学习ngnix

    在`ngnix.txt`中,可能包含了Nginx的配置信息。Nginx的配置文件通常位于`/etc/nginx/nginx.conf`,由多个区块组成,如`http`、`server`和`location`。每个区块定义了不同的设置,如监听端口、服务器名称、路由规则等...

    ngnix ngnixDemo

    对于初学者,可以通过`nginxDemo`中的实例进行实践操作,逐步掌握Nginx的配置和管理技巧。同时,深入学习Nginx与其他技术(如PHP-FPM、Docker、Kubernetes等)的集成,能够更好地利用Nginx提升Web服务的性能和稳定性...

Global site tag (gtag.js) - Google Analytics