apache2.2 + tomcat6 集群配置及负载均衡设置(The apache2.2 + tomcat6 cluster configuration and load balancing Settings).docVIP
- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
apache2.2tomcat6集群配置及负载均衡设置(Theapache2.2tomcat6clusterconfigurationandloadbalancingSettings)
apache2.2 + tomcat6 集群配置及负载均衡设置(The apache2.2 + tomcat6 cluster configuration and load balancing Settings)
Running environment: apache2.2.X + tomcat6.0.X + window xp
1. install Apache, the service starts, enter http://localhost in the browser for testing, if you can see a It works page, on behalf of Apache has been working properly
2. install Tomcat, slightly.
3. Apache configuration
As the Apache 2.2.x integrates the mod_jk functionality, there is no need to do the tedious perties configuration relative to version 1.3, and the configuration process is greatly simplified.
3.1. finds the conf/httpd.conf file under the Apache installation directory and opens with a text editor.
Remove the following text before the annotation (#) so that the Apache in the automatic loading agent startup module (proxy).
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
3.2. pulls down the document and finds the IfModule dir_module node,
After DirectoryIndex index.html, add index.jsp, separated by spaces
3.3. continues to pull down the document, find Include conf/extra/httpd-vhosts.conf, and remove the previous annotation.
3.4. then, in conf/extra/httpd-vhosts.conf, configure the virtual site and add at the bottom
VirtualHost *: 80
ServerAdmin xxx@126.com
ServerName localhost
ServerAlias localhost
ProxyPass / balancer://cluster/ stickysession=jsessionid nofailover=On
ProxyPassReverse / balancer://cluster/
ErrorLog logs/thc-error.log
CustomLog logs/thc-access.log common
/VirtualHost
Note: here balancer:// is telling Apache requires a load balancing proxy, cluster is behind the cluster name (take), two log ErrorLog engine is responsible for recording errors, CustomLog is responsible for recording all the HTTP acces
您可能关注的文档
- 详细怀孕测试攻略.doc
- 诊断试纸B .doc
- 诊断问题书定制.doc
- 身体健康标准测试方法.doc
- 身体坏了.ppt
- 身体检查.doc
- 身体检查 11.doc
- 身体检查技能检查.doc
- 身体检查提示.doc
- 身体部位常见肌筋膜疼痛.doc
- Apache和PHP-Perl-Python组合加速_网络管理_网上学园_科技时代_新浪网(Apache and PHP - Perl - Python combination acceleration _ network management _ new wave web).doc
- apache的rewrite(The apache rewrite).doc
- Apache负载均衡+Tomcat集群(Apache load balancing + Tomcat cluster).doc
- apache负载均衡配置(Apache load balancing configuration).doc
- applicationconfig(applicationconfig).doc
- arcgis字段计算字符串函数(Arcgis field calculates string functions).doc
- ARCHER(弓之骑士)(ARCHER (ARCHER of the bow)).doc
- Argox条码打印机常见问题解答(Argox bar code printer FAQ).doc
- ARIA剧情攻略(ARIA plot).doc
- ARM中C和汇编混合编程及示例(C and assembler hybrid programming and examples in ARM).doc
文档评论(0)