主机怎么绑定域名,Tomcat6 配置多虚拟主机,多域名绑定一IP

实现效果:
http://localhost 访问一个项目例如一个助学网。
http://localhost1 访问一个项目例如一个办公系统
实现方案,需要修改两个地方
一个是C:\WINDOWS\system32\drivers\etc\hosts文件,改为
127.0.0.1 localhost
127.0.0.1 localhost1
另一个要改的就是server.xml,修改后如下:
配置多虚拟主机,多域名绑定一IP" align=top src="http://www.cnblogs.com/Images/OutliningIndicators/ContractedBlock.gif" width=11 height=16>配置多虚拟主机,多域名绑定一IP" align=top src="http://www.cnblogs.com/Images/OutliningIndicators/ExpandedBlockStart.gif" width=11 height=16 real_src="http://www.cnblogs.com/Images/OutliningIndicators/ExpandedBlockStart.gif">Code
<?xml version='1.0' encoding='utf-8'?>
<Server port="8005" shutdown="SHUTDOWN">
<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
<Listener className="org.apache.catalina.core.JasperListener" />
<Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
<GlobalNamingResources>
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" />
</GlobalNamingResources>
<Service name="Catalina">
<Connector port="80" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
<Engine name="Catalina" defaultHost="localhost">
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase"/>
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true" debug="0">
<Context path="" docBase="E:\Tomcat6\webapps\YangFan" reloadable="true" crossContext="true"/>
</Host>
<Host name="localhost1" appBase="webapps"
unpackWARs="true" autoDeploy="true" debug="0">
<Context path="" docBase="E:\Tomcat6\webapps\hiccOffice" reloadable="true" crossContext="true"/>
</Host>
</Engine>
</Service>
</Server>
ok,重启tomcat6,就可以访问了,前提是保证写的路径正确。
如果本机已经申请了域名,那么只需要修改server.xml就可以。
只需要把localhost和localhost1分别改为不同的域名就OK了。十分的简单。
Tags: 

延伸阅读

最新评论

发表评论