tomcat多端口,多web程序的一点学习经验

tomcat 多端口,多 web 程序的一点学习经验

1.         直接从 tomcat 根目录开始,只需要修改 conf 下的 server.xml 文件, 节点下是 name 是关键,起不同的名称配置两个节点,这样才能实现多端口

               port="8080" minProcessors="5" maxProcessors="75"

               enableLookups="true" redirectPort="8443"

               acceptCount="10" debug="0" connectionTimeout="60000"/>

                                

 

               port="8081" minProcessors="5" maxProcessors="75"

               enableLookups="true" redirectPort="8443"

               acceptCount="10" debug="0" connectionTimeout="60000"/>

                                

Appbase 是程序位置, docBase 设置为 . 就可以了, Engine 中有个属性 defaultHost 设置为节点下 host 节点的 name ,注意 host name 的名称不能相同通过 http://localhost 8080 就可以访问第一个程序了;第二个程序的访问地址 http:// localhost 8081

访问程序的默认页面为 index.jsp 时有效

2.         同一端口设置多个程序

               port="8080" minProcessors="5" maxProcessors="75"

               enableLookups="true" redirectPort="8443"

               acceptCount="10" debug="0" connectionTimeout="60000"/>

                                

                                

Service 节点下设置两个 Host name 不能相同

E:/Windows/System32/drivers/etc/hosts 文件中添加节点

127.0.0.1       lc

127.0.0.1       tj

就可以分别通过访问 http://lc 8080 http://tj 8080 访问你的程序了

 

 

 

 

你可能感兴趣的:(java开发,tomcat,web,service,server,c)