在tomcat 6中部署项目
我正在尝试将一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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
检查 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 .