因为最近的项目需要用到负载均衡,不用考虑,当然用大名鼎鼎的Nginx啦。至于Nginx的介绍,这里就不多说了,直接进入主题如何在Windows下配置。
我的系统是win7旗舰版的,到官网下载最新版本 nginx/Windows-1.7.9 解压到英文目录下(我刚开始是放到中文目录下的,启动时会有问题,下面常见错误里会讲到)。
一、 Nginx配置
找到 conf 目录里的 nginx.conf 文件,配置Nginx
view source
print
?
001.
#user nobody;
002.
#指定nginx进程数
003.
worker_processes 1;
004.
005.
#全局错误日志及PID文件
006.
#error_log logs/error.log;
007.
#error_log logs/error.log notice;
008.
#error_log logs/error.log info;
009.
010.
#pid logs/nginx.pid;
011.
012.
013.
events {
014.
# 连接数上限
015.
worker_connections 1024;
016.
}
017.
018.
#设定http服务器,利用它的反向代理功能提供负载均衡支持
019.
http {
020.
021.
#设定mime类型,类型由mime.type文件定义
022.
include mime.types;
023.
default_type application/octet-stream;
024.
#设定日志格式
025.
#log_format main "$remote_addr - $remote_user [$time_local] "$request" "
026.
# "$status $body_bytes_sent "$http_referer" "
027.
# ""$http_user_agent" "$http_x_forwarded_for"";
028.
029.
#使用哪种格式的日志
030.
#access_log logs/access.log main;
031.
032.
#sendfile 指令指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,对于普通应用,
033.
sendfile on;
034.
#tcp_nopush on;
035.
036.
#连接超时时间
037.
#keepalive_timeout 0;
038.
keepalive_timeout 65;
039.
040.
#开启gzip压缩
041.
#gzip on;
042.
043.
044.
045.
#设定负载均衡的服务器列表 支持多组的负载均衡,可以配置多个upstream 来服务于不同的Server.
#nginx 的 upstream 支持 几 种方式的分配
#1)、轮询(默认) 每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,能自动剔除。
#2)、weight 指定轮询几率,weight和访问比率成正比,用于后端服务器性能不均的情况。 跟上面样,指定了权重。
#3)、ip_hash 每个请求按访问ip的hash结果分配,这样每个访客固定访问一个后端服务器,可以解决session的问题。
#4)、fair
#5)、url_hash #Urlhash
046.
upstream mysvr {
047.
#weigth参数表示权值,权值越高被分配到的几率越大
048.
#1.down 表示单前的server暂时不参与负载
049.
#2.weight 默认为1.weight越大,负载的权重就越大。
050.
#3.backup: 其它所有的非backup机器down或者忙的时候,请求backup机器。所以这台机器压力会最轻。
051.
#server 192.168.1.116 down;
052.
#server 192.168.1.116 backup;
053.
server 192.168.1.121 weight=1;
054.
server 192.168.1.122 weight=2;
055.
}
056.
057.
#配置代理服务器的地址,即Nginx安装的服务器地址、监听端口、默认地址
058.
server {
059.
#1.侦听80端口
060.
listen 80;
061.
062.
#对于server_name,如果需要将多个域名的请求进行反向代理,可以配置多个server_name来满足要求
063.
server_name localhost;
064.
065.
#charset koi8-r;
066.
067.
#access_log logs/host.access.log main;
068.
069.
location / {
070.
# 默认主页目录在nginx安装目录的html子目录。
071.
root html;
072.
index index.html index.htm;
073.
proxy_pass http://mysvr; #跟载均衡服务器的upstream对应
074.
}
075.
076.
#error_page 404 /404.html;
077.
078.
# redirect server error pages to the static page /50x.html
079.
## 定义错误提示页面
080.
#error_page 500 502 503 504 /50x.html;
081.
#location = /50x.html {
082.
# root html;
083.
#}
084.
085.
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
086.
#
087.
#location ~ \.php$ {
088.
# proxy_pass http://127.0.0.1;
089.
#}
090.
091.
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
092.
#
093.
#location ~ \.php$ {
094.
# root html;
095.
# fastcgi_pass 127.0.0.1:9000;
096.
# fastcgi_index index.php;
097.
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
098.
# include fastcgi_params;
099.
#}
100.
101.
# deny access to .htaccess files, if Apache"s document root
102.
# concurs with nginx"s one
103.
#
104.
#location ~ /\.ht {
105.
# deny all;
106.
#}
107.
}
108.
109.
110.
# another virtual host using mix of IP-, name-, and port-based configuration
111.
#
112.
#server {
113.
# listen 8000;
114.
# listen somename:8080;
115.
# server_name somename alias another.alias;
116.
117.
# location / {
118.
# root html;
119.
# index index.html index.htm;
120.
# }
121.
#}
122.
123.
124.
# HTTPS server
125.
#
126.
#server {
127.
# listen 443 ssl;
128.
# server_name localhost;
129.
130.
# ssl_certificate cert.pem;
131.
# ssl_certificate_key cert.key;
132.
133.
# ssl_session_cache shared:SSL:1m;
134.
# ssl_session_timeout 5m;
135.
136.
# ssl_ciphers HIGH:!aNULL:!MD5;
137.
# ssl_prefer_server_ciphers on;
138.
139.
# location / {
140.
# root html;
141.
# index index.html index.htm;
142.
# }
143.
#}
144.
145.
}
二、 启动Nginx
cmd 进入Nginx解压目录 执行 start nginx启动Nginx服务
启动后如何检查是否启动成功呢? 输入命令 tasklist /fi "imagename eq nginx.exe" 看到以下信息说明启动成功了
一切就绪,访问一下server 里配置的 server_name 是不是被重定向到 upstream配置的服务器上了,是不是很简单!
三、常见错误
如果启动失败 可以看下logs目录下 error.log 文件里的错误信息。
我在第一次安装的时遇到两个错误,也是最容易碰到的问题,在这里列出来方便大家碰到相同的问题时快速解决。
1. 端口占用问题
我的配置文件里服务侦听的是 80 端口,由于机器上部署了IIS,80端口被默认站点占用,把站点关闭就可以了,这个问题在错误日志里记录是这样的。
view source
print
?
1.
2015/01/15 10:44:12 [emerg] 8800#5988: bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions)
碰到类似的错误,请确认端口是否被占用或被防火墙屏蔽
2.Nginx所在目录有中文
错误日志大致输出一下内容
view source
print
?
1.
2015/01/15 11:55:55 [emerg] 5664#8528: CreateFile() "E:\软件\nginx-1.7.8/conf/nginx.conf" failed (1113: No mapping for the Unicode character exists in the target multi-byte code page)
3. 启用缓存时报错
view source
print
?
1.
2015/01/15 17:26:50 [emerg] 17068#20356: shared zone "cache_one" has no equal addresses: 02CF0000 vs 02A20000
2.
2015/01/15 17:26:50 [alert] 11536#11228: worker process 17068 exited with code 1
我一直没有找到解决的方法,有人说重启服务,或者缓存设置大一点就可以了,我试了一下没有用的,官网 原文是这样讲的,只能认为windwos下无解了。
view source
print
?
1.
: The cache and other modules which require shared memory support do
2.
: not work in Windows Vista and later due to address space layout
3.
: randomization being enabled in these Windows versions.