运行多个tomcat服务器
我已将 tomcat 6 和 7 安装到端口 8080。
我使用 tomcat 6 通过从其 Web 应用程序加载文件来在本地 LAN 中部署我的项目。
同时我使用 eclipse ide 进行开发。
当我必须使用 tomcat7 从 eclipse 运行我的项目时,我必须停止 tomcat6。
tomcat的端口可以改吗?
我想要的是同时运行两个服务器。
提前致谢..
I have installed tomcat 6 and 7 to the port 8080.
I am using tomcat 6 for deploying my projects in local LAN by loading files from its web apps.
At the same time I am using eclipse ide for developing purpose.
When ever I have to run my project from eclipse using tomcat7, I have to stop the tomcat6.
Is it possible to change the port of tomcat?
What I want is to run both the servers at the same time.
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要以这种方式安装两个 tomcat 实例:
下载 tomcat,并将其解压两次,放入两个单独的目录中。
按以下方式编辑其中一份副本中的conf/server.xml 文件:
将根服务器元素上的端口更改为不同的数字(例如 8006)
将连接器元素上的端口属性更改为不同的数字(例如,8010 代替 8009、8081 代替 8080、8444 代替 8443)
您现在应该能够在两个安装中运行 bin/startup.sh 脚本来获得两个正在运行的 tomcat。使用端口 8080 连接并安装基本应用程序服务,然后使用端口 8081 连接以安装服务提供商管理服务。
源链接。
给出了一些其他有用的链接
链接,
链接。
To install two instances of tomcat in this way:
Download tomcat, and unpack it twice, into two separate directories.
Edit the conf/server.xml file in one of the copies in the following way:
Change the port on the root Server element to a different number (e.g. 8006)
Change the port attributes on the Connector elements to a different number (e.g. 8010 instead of 8009, 8081 instead of 8080 and 8444 instead of 8443)
You should now be able to run the bin/startup.sh scripts in both installations to get two running tomcats. Connect using port 8080 and install the basic application services, and then connect using port 8081 to install the service provider management services.
Source link.
Some other useful links are given
links,
links.
您需要更改连接器所在的
端口
侦听至少其中一个 -6060
版本6
和7070
版本7
对我来说听起来不错且令人难忘。请注意,这不仅仅适用于不同版本的 Tomcat——同一版本 Tomcat 的不同配置也可以通过这种方式侦听不同的端口。
You need to change the
port
on which your connector listens for at least one of them --6060
for version6
and7070
for version7
sound good and memorable to me.Note that this works for more than just different versions of Tomcat -- different configurations of the same version of Tomcat can listen on different ports this way too.
这个问题已经有了答案。
这个新线程的唯一目的是在屏幕截图的帮助下帮助初学者。
按照以下步骤操作,
重复相同的步骤并更改端口号以创建另一个 tomcat 实例。
This question is already answered.
Only intent of this new thread to help the beginners, with the help of screenshots.
Follow below steps,
Repeat the same steps and change the port number for creating another instance of tomcat.