在jboss应用服务器中配置多个站点
我正在使用 jboss 应用程序 Web 服务器,并且已经部署了 war 文件并正在运行网站。我如何使用 httpd.conf 和 jboss 配置另一个站点以在同一 jboss 应用程序服务器中运行另一个站点。
I am using a jboss application web server, and have war files deployed already and running a website . how do i configure another site using httpd.conf and jboss to run one more site in the same jboss application server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您尝试添加另一个服务器实例,那么最简单的方法是复制并重命名现有服务器。
例如,复制 /server/default 服务器并将其重命名。现在您有另一台服务器,您可以对其上的内容发出 EAR 或 WAR。
如果您尝试同时启动两个服务器,您将遇到问题,因为两个服务器都在同一端口上运行。要解决此问题,您可以使用 -Djboss.service.binding.set=ports-01 更改特定端口的端口值。 ports-01 会将 100 添加到您的端口号,因此 8080 变为 8180。以下是从 bat 文件启动它的方法:
我不记得端口绑定是否需要一些配置,但这应该不难。
If you're trying to add another server instance, then the easiest way is to copy and rename an existing server.
For example, copy your /server/default server and rename it something. Now you have another server which you can throw an EAR or WAR of what have you on it.
If you try to start two simultaneously, you will face issues because both servers are running on the same port. To fix this, you can probably use -Djboss.service.binding.set=ports-01 to change your port value for the particular port. ports-01 will add 100 to your port number, so 8080 becomes 8180. Here's how you would start it from a bat file:
I don't remember if there was some config needed for port binding, but it shouldn't be hard.