将java ee应用程序部署到8080以外的另一个端口

发布于 2024-08-17 20:11:44 字数 371 浏览 7 评论 0原文

只是想知道我是否可以在任何应用程序服务器中部署我的 java ee 应用程序,例如:glassfish,并且用户无需输入端口号即可访问,例如:http://abc.com (我当前的应用程序网址将为http://abc.com:8080

据我所知,我可能需要另一个网络服务器,例如:Apache 使用 mod_proxy 模块将请求重定向到应用程序服务器,以便我实现这一目标,对吧?

请建议...

Just wonder if i can deploy my java ee application in any application server for eg: glassfish, and user are able to access without typing the port number, for eg:http://abc.com
(my current application url will be http://abc.com:8080)

as from my knowledge, i might need another web server like for eg:Apache to redirect request to application server using mod_proxy module in order for me to achieve that, right?

kindly advise...

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

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

发布评论

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

评论(2

云朵有点甜 2024-08-24 20:11:44

将 Apache 设置为代理从端口 80 到在端口 8080 上运行的应用程序/Web 服务器的请求是消除 URL 中对端口号的需要的一种方法。但这肯定不是唯一的方法。您应该能够将任何 J2EE 应用程序服务器或 Web 服务器配置为在端口 80 而不是 8080(J2EE 应用程序/Web 服务器中的常见默认值)上运行。配置编辑的详细信息是特定于应用程序/Web 服务器的。您可能需要系统上的 root 权限才能绑定到端口 80。

Setting up Apache to proxy requests from port 80 to your app/web server running on port 8080 is one way to eliminate the need for port numbers in your URLs. But it's certainly not the only way. You should be able to configure any J2EE application server or web server to run on port 80 instead of 8080 (a common default in J2EE app/web servers). The details of the configuration editing are app/web server specific. You may need root privileges on your system to bind to port 80.

⊕婉儿 2024-08-24 20:11:44

您需要告诉它绑定到端口 80 而不是 8080,这通常有详细说明如何操作,因为这是常见操作。

注意:在 Unix 系统下,您需要成为 root 才能绑定到端口 80 - 这里 Apache 前端可能很有用。

You need to tell it to bind to port 80 instead of 8080, which is usually well documented how to since this is a common operation.

Note: Under Unix systems you need to be root to bind to port 80 - here an Apache frontend might be useful.

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