在同一台服务器上运行 JBoss 4.2.3 和 JBoss 5.1

发布于 2024-07-22 05:37:03 字数 336 浏览 6 评论 0原文

我想在同一台服务器上运行 JBoss 4.2.3 和 JBoss 5.1,但不能同时运行。 我只需要能够在两者之间来回切换以进行测试,因此我不需要更改端口或类似的内容。 我的问题是 JBOSS_HOME 环境变量。 当我设置 /soft/JBoss-4.2.3.GA 目录和 /soft/JBoss-5.1.0.GA 目录时,我可以运行相应的 bin run.sh 命令,但是,两者都尝试使用 $JBOSS_HOME 和$PATH 环境变量设置为第一次安装 (JBoss-4.2.3)。 那么,如何设置单独的环境变量呢? 或者告诉我的新 JBoss 5.1 安装为 JBOSS_HOME 使用另一个环境变量? 我该如何让这两个一起运行? 谢谢!

I want to run JBoss 4.2.3 and JBoss 5.1 on the same server, but not simultaneously. I just need to be able to switch back and forth between the two for testing, so I don't need to change ports or anything like that. My problem is the JBOSS_HOME environment variable. When I set up a /soft/JBoss-4.2.3.GA directory and a /soft/JBoss-5.1.0.GA directory I can run the respective bin run.sh commands, however, both try to use the $JBOSS_HOME and $PATH environment variables which are set to the first installation (JBoss-4.2.3). So, how can I set separate environment variables? Or tell my new JBoss 5.1 installation to use another environment variable for JBOSS_HOME? How would I go about getting these two running together? Thanks!

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

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

发布评论

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

评论(3

还给你自由 2024-07-29 05:37:03

一个快速的解决方案是将 run.sh 中的 $JBOSS_HOME 和 $PATH 变量设置为每个 JBoss 实例的适当目录。

A fast solution would be to set the $JBOSS_HOME and $PATH variable within the run.sh to the appropiate directory of each JBoss instance.

层林尽染 2024-07-29 05:37:03

在这种情况下,最好的解决方案是使用虚拟 IP 接口,您将保留默认端口,仅更改 IP 地址。

要启动 jboss 绑定到另一个 IP,只需在 run.sh 中添加此参数(或在 run.conf 中持久化):

sh run.sh -b 192.168.0.1 

而另一个实例则开始指向另一个 IP

sh run.sh -b 192.168.0.2

The best solution in this case is use virtual ip interface, you will keep the default ports and will just change de IP address.

to start jboss doing binding to another IP just add this parameter in the run.sh (or persistent in run.conf):

sh run.sh -b 192.168.0.1 

and the other instance just start point to another IP

sh run.sh -b 192.168.0.2
优雅的叶子 2024-07-29 05:37:03

我最近遇到了类似的问题,我的解决方法是为每个版本的 JBoss AS 提供一对包装器脚本。

I had a similar problem recently and my workaround is a pair of wrapper scripts for each version of JBoss AS.

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