在tomcat 6中部署项目

发布于 2024-09-01 07:11:09 字数 268 浏览 4 评论 0原文

我正在尝试将一个 war 文件部署到我的服务器 tomcat 6 上,它在 Linux 机器上运行。如果我给出带有端口号的网址,我的项目就会运行,例如: http://192.168.1.8:8080/uctc< /a> 但如果我在没有端口号的情况下运行它,它就无法运行,例如:://192.168.1.8/uctc ...谁能告诉我如何在没有端口号的情况下运行我的网站?

I'm trying to deploy a war file onto my server which is tomcat 6 and it runs on a linux machine. My project runs if i give the url with the port number eg: http://192.168.1.8:8080/uctc but it fails to run if i run it without the port number eg ://192.168.1.8/uctc ...can anyone tell me how to run my website without the port number??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何必那么矫情 2024-09-08 07:11:09

8080 是默认的 tomcat 端口,因此将 tomcat 服务器配置为使用 8080 以外的 80 端口。
请参阅:http://www.klawitter.de/tomcat80.html

8080 is default tomcat port, so configure your tomcat server to use 80 port other than 8080.
see: http://www.klawitter.de/tomcat80.html

非要怀念 2024-09-08 07:11:09

检查 server.xml...有一个类似于 Connector port="8080" 的条目..将 8080 更改为 80 并保存。然后重新启动 tomcat 服务

这是假设您尚未在端口 80 上运行其他服务。

Check in server.xml... there is an entry similar to Connector port="8080".. change the 8080 to just 80 and save. Then restart the tomcat service

This is assuming you're not already running another service on port 80 .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文