我已经为此挣扎了一天多。因为我对服务器设置还不熟悉。我一直在网上关注许多关于此问题的教程和文档,但都失败了。
这是我迄今为止所做的事情。
我的 vps 已运行,并且 Apache 在端口 80 上运行。
我在端口 8080 安装了 Tomcat 7.0.55,它已启动并运行。
现在我们必须将流量从 Apache 路由到 Tomcat
修改apache的000-default.conf使其看起来像这样。
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
<VirtualHost *:*>
ProxyPreserveHost On
# Servers to proxy the connection, or;
# List of application servers:
# Usage:
# ProxyPass / http://[IP Addr.]:[port]/
# ProxyPassReverse / http://[IP Addr.]:[port]/
# Example:
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ServerName localhost
</VirtualHost>
这成功地将我的每个请求重定向到 tomcat。
- 现在在浏览器中运行我注册的域名。www.mytestdomain.com。我正在登陆默认的 tomcat 页面。在浏览器地址栏中写入服务器 ip 也会将我登陆到同一个 tomcat 页面。
5 现在我需要 www.mytestdomain.com 指向部署在 $CATALINA_HOME/webapps/www.mytestdomain.com 的 tomcat 中的应用程序
6 另一个 test.mytestdomain.com 指向我在 $CATALINA_HOME/webapps/test.mytestdomain.com 的 tomcat 中部署的应用程序
7 并且 xx.xx.xx.xx 我的 ip 只能登陆默认 tomcat 页面。
这就是我想要实现的但却无法做到的。
8 现在关注
http://tomcat.apache.org/tomcat-7.0-doc/virtual-hosting-howto.html
我更新了 $CATALINA_HOME/conf/server.xml 以增加一个主机。更新 server.xml 文件后,
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html
Note: The pattern used is equivalent to using pattern="common" -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
</Host>
<Host name="www.mytestdomain.com" appBase="webapps-new"
unpackWARs="true" autoDeploy="true">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html
Note: The pattern used is equivalent to using pattern="common" -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="www.mytestdomain.com_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
</Host>
我创建了新的 appBase 目录 mkdir $CATALINA_HOME/webapps-new
在 $CATALINA_HOME/webapps-new 文件夹中,我为我的 webapp 创建了符号链接。ln -s ../webapp/www.mytestdomain.com ROOT
cd $CATALINA_HOME/webapps-new/ROOT/WEB_INF/
在 META-INF 文件中创建 context.xml ,内容如下。
重新启动 Apache 并重新启动 Tomcat-[确定]
结果。--> 浏览器中的 www.mytestdomain.com 正确访问了我的 tomcat webapp。
但是 test.mytestdomain.com 和 xx.xx.xx.xx 我的浏览器中的 ip 也与 www.mytestdomain.com 一样访问我的同一个 webapp。它们应该转到默认主机。
我曾经尝试过许多其他技巧,但都没有成功。
任何帮助都将不胜感激。我知道这很有可能。
谢谢
答案1
这对我来说听起来相当复杂而且不是我尝试运行的方式。
一般来说,我会尝试将尽可能多的环境彼此分开,理想情况下在不同的服务器上运行,但我知道这不是使用单个 VPS 就可以做到的。
您至少应该分离 tomcat 实例,这样可以减少混乱并使一切变得更加清晰。
我会
1)在不同的端口上启动 2 个不同的 tomcat 实例(根据运行的发行版,可以通过不同的方式实现),prod:8080 和 test:8180
2)在 Apache 配置中启用 NameVirtualHost,并将正确的服务器名称代理到正确的 tomcat 实例
# Ensure that Apache listens on port 80
Listen 80
# Listen for virtual host requests on all IP addresses
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot /www/example1
ServerName www.mytestdomain.com
# Other directives here
ProxyPreserveHost On
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /www/example2
ServerName test.mytestdomain.com
# Other directives here
ProxyPreserveHost On
ProxyPass / http://localhost:8180/
ProxyPassReverse / http://localhost:8180/
</VirtualHost>
这样,您的环境就完全独立了,您可以将更改应用于测试而不会影响产品,不仅在您的代码内部,而且在 tomcat 配置级别和 apache 配置级别。