jboss-5.1.0.GA 开机自动启动

发布于 2024-10-10 01:27:16 字数 404 浏览 1 评论 0原文

我的任务是在远程 ubuntu 10.4 Lts 服务器上安装 jboss-5.1.0.GA。有了所有这些资源,我能够成功运行 jboss,但我的问题是我无法在引导工作中自动启动,以便 jboss 将在服务器上运行。

我遵循了几个教程,这些教程说我创建一个名为 jboss 的单独用户,并将 jboss_init_Redhat.sh 复制到 /etc/init.d/jboss (jboss home、java 路径、jboss 用户以及绑定到 0.0.0.0 ) set)并使用 /etc/init.d/jboss start

但我无法在浏览器上的 Ip 处看到 Jboss 页面。,

如果我执行 ./run.sh -b 0.0.0.0 = => 服务器已启动...

有人可以阐明这个问题吗???

I was given the task of installing jboss-5.1.0.GA on a remote ubuntu 10.4 Lts server. With all those resources out there I was able to run jboss successfully but my problem was that I wasn't able to get auto start on boot work so that jboss would be running on the server.

I followed a couple of tutorials that said me create a separate user called jboss and to copy the jboss_init_Redhat.sh to the /etc/init.d/jboss (jboss home, java path ,jboss user and the binding to 0.0.0.0 is all set) and used /etc/init.d/jboss start

but I can't get to see the Jboss page at the Ip on a browser.,

If i do a ./run.sh -b 0.0.0.0 ==> the server is up ...

Can some body shed some light on this issue????

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

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

发布评论

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

评论(1

抚笙 2024-10-17 01:27:16

如果您想使用 jboss_init_redhat.sh 脚本在给定接口上运行 JBoss AS,请查看以下行:

#if JBOSS_HOST specified, use -b to bind jboss services to that address
JBOSS_BIND_ADDR=${JBOSS_HOST:+"-b $JBOSS_HOST"}

您应该在这些行之前定义新变量:

JBOSS_HOST="0.0.0.0"

您还应该检查 shutdown 命令(特别是当您在 127.0.0.1 或 0.0.0.0 之后的其他地址上运行服务器时),它应该知道如何找到您的服务器:

JBOSS_CMD_STOP=${JBOSS_CMD_STOP:-"java -classpath $JBOSSCP org.jboss.Shutdown --shutdown -s jnp://${JBOSS_HOST}:1099"}

If you want to run JBoss AS on given interface using jboss_init_redhat.sh script look at these line:

#if JBOSS_HOST specified, use -b to bind jboss services to that address
JBOSS_BIND_ADDR=${JBOSS_HOST:+"-b $JBOSS_HOST"}

You should just define new variable before these line:

JBOSS_HOST="0.0.0.0"

You should also check shutdown command (especially when you run your server on some other address then 127.0.0.1 or 0.0.0.0), it should know how to find your server:

JBOSS_CMD_STOP=${JBOSS_CMD_STOP:-"java -classpath $JBOSSCP org.jboss.Shutdown --shutdown -s jnp://${JBOSS_HOST}:1099"}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文