Windows下安装Nginx及负载均衡

1.下载Windows版本的Nginx

http://nginx.org/en/download.html

2.解压Nginx包,配置conf文件下的nginx.conf文件

3.配置说明:

#user  nobody;
#N工作进程数,默认为1
worker_processes  1;

#错误日志保存路径
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid文件路径
#pid        logs/nginx.pid;

#工作模式及连接数上限
events {
    #单个后台worker process进程的最大并发链接数,默认1024,可以按照最大客户端连接数max_clients配置
    #nginx作为http服务器的时候:
    #max_clients = worker_processes * worker_connections

    #nginx作为反向代理服务器的时候:
    #max_clients = worker_processes * worker_connections/4
    worker_connections  1024;
}

#http服务器配置,做web服务器或反向代理
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;#开启高效传输模式

    #在nginx中,tcp_nopush配置与tcp_nodelay“互斥”。它可以配置一次发送数据包的大小。
    #也就是说,数据包累积到一定大小后就发送。
    #在nginx中tcp_nopush必须和sendfile配合使用。
    #tcp_nopush     on;

    #连接超时时间 单位是秒
    #keepalive_timeout  0;
    keepalive_timeout  65;

    #启用gzip压缩
    #gzip  on;

    upstream web70{ #有域名的可以用域名
        #负载的一个实例,可以是外网IP
        #默认轮询,把每个请求按顺序逐一分配到不同的server,如果server挂掉,能自动剔除。

        #其他配置:
        #1.在负载的实例后面加weigth参数,表示权值,权值越高被分配到的几率越大
        #譬如server 127.0.0.1:71 weight=1;   

        #2.把请求分配到连接数最少的server
        #least_conn;

        #3.每个请求会按照访问ip的hash值分配,这样同一客户端连续的Web请求都会被分发到同一server进行处理
        #可以解决session的问题。如果server挂掉,能自动剔除。
        #ip_hash;

        server 127.0.0.1:71; #weight=1;
        server 127.0.0.1:72; #weight=1;
    }

    #对外web服务器实例
    server {
        listen       70;#监听端口
        server_name  localhost;#服务器名,默认localhost

        #默认字符编码,默认koi8-r,可改为utf-8
        #charset koi8-r;
        charset utf-8;

        #本服务器实例日志路径
        #access_log  logs/host.access.log  main;

        #默认请求配置
        location / {
            root   html;#web服务器根目录,用来放网站程序的目录
            index  index.html index.htm;#默认首页
            proxy_pass  http://web70; #请求转向的url地址,反向代理则填写对应upstream后面的域名
            proxy_redirect  default;
        }

        #错误页面
        #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;
    #    }
    #}

}

4.打开控制台进入Nginx目录,输入nginx.exe命令来启动Nginx

5.打开任务管理器可以看到Nginx已经在运行了,此时控制台也可以关闭了

6.配置负载均衡web实例

7.然后刷新Nginx的服务器,显示第一个负载的web实例

8.再刷新下,显示第二个负载的web实例

Nginx其他命令:

nginx.exe -s stop     //停止nginx
nginx.exe -s reload  //重新加载nginx
nginx.exe -s quit     //退出nginx

Nginx配置文件下下载

原文地址:https://www.cnblogs.com/townsend/p/12084369.html

时间: 2024-10-13 00:37:14

Windows下安装Nginx及负载均衡的相关文章

Windows下使用Nginx实现负载均衡

Nginx (”engine x”) 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器. Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,它已经在该站点运行超过两年半了.Igor 将源代码以类BSD许可证的形式发布.尽管还是测试版,但是,Nginx 已经因为它的稳定性.丰富的功能集.示例配置文件和低系统资源的消耗而闻名了. Nginx负载均衡有哪些功能呢? 如果后面的服务器其中一台坏了,它能自动识

Linux下利用nginx实现负载均衡

linux下利用nginx实现负载均衡 前提条件: 1,安装好jdk 2,安装好tomcat和nginx(可以参考我前两篇文章) 满足前提条件后,要用nginx实现负载均衡,主要是靠配置nginx的配置文件. 我们要实现的架构图如下: 1.分别部署3个tomcat,端口分别为8080,8081,8082 drwxr-xr-x 9 root root 4096 Mar 11 13:41 tomcat8-8080drwxr-xr-x 9 root root 4096 Mar 11 17:27 tom

ubantu 下 tomcat + nginx 实现负载均衡

在自己的ubantu虚拟机下实现nginx+tomcat负载均衡,自己本地练着玩,挺有意思的,记录下过程. 以下参考了几篇有用的博文: Tomcat+Nginx搭建高性能负载均衡集群  http://blog.csdn.net/wang379275614/article/details/47778201: 在Linux里安装.启动nginx   http://blog.csdn.net/molingduzun123/article/details/51850925:http://www.cnbl

windows下tomcat7+nginx1.8负载均衡

1.负载平衡是一种常用的跨多个应用程序实例 技术优化资源利用率,最大化吞吐量, 减少延迟,并确保容错配置. 2.使用nginx作为非常有效的HTTP负载均衡器 将流量分发给几个应用程序服务器和改善 性能.可伸缩性和可靠性nginx的web应用程序. 工具/原料 tomcat7 下载地址:http://pan.baidu.com/s/1pJxlzF9 nginx1.8 下载地址:http://pan.baidu.com/s/1nts5TTB 测试项目nginx 下载地址:http://pan.ba

Windows环境下使用Nginx搭建负载均衡

前言 最近没有什么事情,喜欢总结并学习东西!前几天写来一个Session共享,那么我们为什么需要Session共享?因为我们的应用程序分布在多个服务器上,为了合理分配用户的请求,就需要用到负载均衡技术(将请求/数据[均匀]分摊到多个操作单元上执行). 怎样实现负载均衡? 1.  使用F5硬件来实现 2. 使用Nginx 工具来搭建一个. 下面我们就讲解一下,在Windows环境下,怎样部署Nginx及常见问题. 一:下载Nginx 去官网下载最新的 Windows-1.11.10 并解压到英文目

Nginx 在windows下配合iis搭建负载均衡过程 [转]

因为项目遇到大量图片存储问题,虽然现在我们图片还不是很多(目前在1T上下,预计增长速度每年1.3倍的增长速度),自己在思考如何有效地存储大量图片时,查找一些资料,看到了,有人使用 Nginx搭建服务器,本着学习的目的,自己也亲自去体验了一下nginx在window下的安装过程,并配合iis搭建一个负载均衡的过程,环境如下: 解释一下,因为我自己就一台计算机,为了演示效果,所以安装了虚拟机. 计算机A : 本计算机上安装Nginx 同时也会配置IIS,为了不和Nginx的80端口冲突,务必要修改端

Linux下配置Nginx + Tomcat负载均衡

Nginx简介 Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器 . Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的Rambler.ru 站点开发的,它已经在该站点运行超过四年多了.Igor 将源代码以类BSD许可证的形式发布.自Nginx 发布四年来,Nginx 已经因为它的稳定性.丰富的功能集. 示例配置文件和低系统资源的消耗而闻名了.目前国内各大门户网站已经部署了Nginx,如

[转]CENTOS 6.5 配置YUM安装NGINX+服务器负载均衡

原文连接: CENTOS 6.5 配置YUM安装NGINX  http://blog.sina.com.cn/s/blog_69f467b70102uyux.html 本文介绍一下如何用yum源安装Nginx. 第一步,在/etc/yum.repos.d/目录下创建一个源配置文件nginx.repo: cd /etc/yum.repos.d/ vim nginx.repo 填写如下内容: [nginx] name=nginx repo baseurl=http://nginx.org/packa

CentOS6.5安装nginx及负载均衡配置

所有的安装包可以去以下地址下载,或者自行去官网下载,下面都有介绍. 所有安装包地址:http://download.csdn.net/detail/carboncomputer/9238037 原文地址:http://www.cnblogs.com/zhongshengzhen/p/nginx.html 1.下载PCRE, 是一个用C语言编写的正则表达式函数库 [[email protected] pcre-8.36]# cd /tmp/download/ [[email protected]