Apache2.2 above version and Tomcat integration configuration and load balancing implementation _linux

Source: Internet
Author: User
Today, technical director of the implementation of Apache and Tomacat integration, on the Internet to find a lot of information, the results found that this is the most convenient!

Here is the implementation of 2 Tomcat load balancing, if only one can delete a

apache2.2 the above version, no need to use Jk_mod to integrate Tomcat, direct use of AJP, very convenient.

Modify Apache configuration file httpd.conf

Enable MOD_PROXY_AJP
Copy Code code as follows:

#LoadModule Proxy_module modules/mod_proxy.so
#LoadModule Proxy_ajp_module modules/mod_proxy_ajp.so

Get rid of the # in front of these two lines

And then at the end add
Copy Code code as follows:

<virtualhost *:80>
proxypass/ajp://127.0.0.1:8009/
proxypassreverse/ajp://127.0.0.1:8009/
ServerName a.hackang.cn
</VirtualHost>
<virtualhost *:80>
proxypass/ajp://127.0.0.1:9009/
proxypassreverse/ajp://127.0.0.1:9009/
ServerName b.hackang.cn #这里面的名字可以改为localhost
</VirtualHost>

Get!!! It's convenient, that's what I'm using now.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.