记录在windows 2003 上配置Ningx 1.2.3。
1.下载Ningx,解压至F:/server/
2.同时配置两个tomcat实例,位于F:/server/tomcat-1和F:/server/tomcat-2
端口需要处理,不要冲突。
3.修改conf/nginx.conf
#user nobody;
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;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
proxy_pass http://127.0.0.1;
}
error_page 404 /40x.html;
location = /40x.html {
root 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;
#}
}
upstream 127.0.0.1 {
server 127.0.0.1:8082 weight=1;
server 127.0.0.1:8083 weight=2;
}
# 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;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
4.nginx命令:
start eginx
nginx -s stop quick exit
nginx -s quit graceful quit
nginx -s reload changing configuration, starting a new worker, quitting gracefully an old worker
nginx -s reopen reopening log files
分享到:
相关推荐
这个“Windows+Nginx+Tomcat做负载均衡同时实现session共享Demo”提供了一个具体的实现方案。 首先,Nginx是一款高性能的反向代理服务器,它可以通过配置将用户的HTTP请求分发到多个后端服务器,即Tomcat实例,从而...
1.搭建一个最简洁,模块划分最明确的ssm+swargger+shiro+redis+nginx整合项目,采用maven作为构建工具,在有新项目开发时可以借助此demo快速构建项目 2.实现shiro的授权信息缓存到redis数据库,减少关系数据库...
这里我们关注的是如何在Windows环境下,利用Nginx作为反向代理服务器,与Tomcat应用服务器集群配合,实现负载均衡,并且确保Session数据在多个Tomcat实例之间共享。这个场景对于大型网站或高并发的应用尤其实用,...
【标题】"Tomcat+Nginx+Redis集成Demo"是一个综合性的技术实践,它将三个重要的组件结合在一起,以优化Web应用的性能和可扩展性。Tomcat是Apache软件基金会的一个开源Java应用服务器,主要处理Java Servlet和JSP应用...
### CentOS 6.5 + JDK 1.7 + MySQL 5.5 + Tomcat 7 + Nginx 1.7 安装手册 #### 一、JDK 1.7 安装 ##### 1.1 下载JDK 1.7 - 访问Oracle官方下载页面:...
做Tomcat集群的目的是为了提供更高的负载能力,把访问均摊到不同的服务器上。当有访问请求时nignx会随机将访问请求分发到tomcat1,tomcat2,为了...我们配置的环境是:win7,JDK1.7,nginx-1.8,tomcat6 2个,memcached
在这个“nginx_tomcat8_redis负载均衡demo”中,我们将探讨如何利用Nginx作为反向代理服务器,Tomcat作为应用服务器集群,以及Redis作为会话持久化存储,构建一个高效且可扩展的负载均衡解决方案。 首先,Nginx是一...
【标题】"springboot+vue+nginx完整demo代码"是一个示例项目,它结合了三个关键技术:Spring Boot、Vue.js和Nginx,用于构建现代Web应用程序。这个项目旨在展示如何将后端Java服务与前端JavaScript框架以及反向代理...
nginx+tomcat集群demo,已测试,可放心下载使用!包含 nainx最新包。 温馨提示此demo是windows环境测试。 启动nginx:start nginx或nginx.exe。 关闭nginx:nginx.exe -s stop或nginx.exe -s quit。 访问方式:...
详细教程:http://blog.csdn.net/ifwinds/article/details/52164530 包含以下内容: Tomcat:apache-tomcat-7.0.57.tar Nginx:pcre-8.34.tar ,nginx-1.6.2.tar Ftp:vsftpd-2.2.2-6.el6_0.1.x86_64.rpm
在Windows环境下,构建一个基于Nginx的高可用性Web集群,通常包括Nginx作为反向代理和负载均衡器,memcached用于session共享,以及多个Tomcat实例作为应用服务器。这种架构可以确保用户session的一致性,并在多台...
在IT行业中,构建高效、可扩展的Web服务是至关重要的,而`Nginx`和`Tomcat`的结合在实现这一目标上扮演了重要角色。`Nginx`作为一款高性能的反向代理服务器,常被用于负载均衡,而`Tomcat`则是一款广泛使用的Java...
3. **配置Nginx**:在Nginx的配置文件中,我们需要设置upstream块,定义后端服务器(即Tomcat实例)。然后,在http或server块中添加proxy_pass指令,将请求路由到上游服务器,并开启proxy_set_header以传递Session...
windows环境下Nginx(1.15.10)+Tomcat(7.0.93)搭建高性能负载均衡集群,快速部署.txt文档,启动tomcat和Nginx就行,有完整的demo可以直接运行,有测试访问地址localhost:8888/test/
本文将详细介绍如何利用Nginx作为反向代理服务器,结合Memcached内存缓存系统,以及Tomcat应用服务器来实现这一目标。 首先,我们要理解负载均衡的概念。负载均衡是一种分布式系统架构技术,它的目的是将工作负载...
在提供的`nginx_tomcat_demo`压缩包中,可能包含了一个示例的Nginx配置文件和一个简单的Java Web应用,用于演示Nginx与Tomcat的整合。通过查看这些示例,你可以更好地理解整合过程和配置细节。 总之,Nginx与Tomcat...
我一篇博文关于跨域访问前端的demo,主要就是为了说明,ajax请求,需要加上参数crossDomain: true, 和xhrFields: {withCredentials: true}, 以实现cookie的会话跟踪 ...
用nginx配置tomcat集群时,测试tomcat是否session共享的Demo。直接可用。 本项目只使用了servlet + jsp 进行请求,用于测试tomcat的session是否共享,无其他任何依赖包。 把项目直接放在tomcat的webapp下即可运行...
标题 "nginx,tomcat,Redis,Session共享demo" 涉及的是在分布式环境中如何实现Web服务器间的Session共享。在现代互联网应用中,通常会使用负载均衡器(如Nginx)分配请求到多个后端服务器(如Tomcat),这时用户会话...
在本DEMO中,我们将深入探讨如何在Windows环境下设置Apache Tomcat集群,以及涉及的关键配置文件和操作步骤。 首先,理解集群的概念至关重要。在分布式系统中,集群是一种将多台独立的服务器组织成一个逻辑单元的...