为 Jboss 管理控制台配置单独的端口
我们想要在防火墙后面配置 jboss 服务器。我们希望仅允许公众访问我们的 Web 应用程序,而不是任何标准 JBoss 服务(例如管理控制台 jmx 控制台)。
有没有办法为jboss admin-console、jmx-console配置单独的端口?
We want to configure our jboss server behind a firewall. We want to allow public access only to our web application not for any standard JBoss service like admin console jmx console.
Is there any way to configure separate port for jboss admin-console, jmx-console?
据我了解,纯 JBOSS - 不。 JBOSS 只有一个连接器和一个用于 Web 应用程序的部署工具。
但是,如果您在 JBOSS 之前使用 Apache,则非常简单:对于我自己来说 - 我使用 apache mod_jk 解决了问题。并使用单独的 VirtualHost 和 JkMount 发布管理控制台、jmx-console:
但是在这种情况下,在部署新应用程序时,您将有义务更新 apache 配置。
As I understand with pure JBOSS - nope. JBOSS have only one connector and one deployment facility for web-applications.
However, If you use Apache before JBOSS it's very easy: for myself - I solved the problem using apache mod_jk. and publishing admin-console, jmx-console using separate VirtualHost and JkMount:
However in this case you'll be obligated to update your apache configs, when deploying new applications.