Centos下Web中间件Jboss应用发布start和stop脚本范例
生活随笔
收集整理的這篇文章主要介紹了
Centos下Web中间件Jboss应用发布start和stop脚本范例
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在centos環境部署jboss發布web應用,摸索了發布具體應用的start和stop腳本,范例如下:
1、start腳本:${JBOSS_HOME}/bin/start-app.sh
export LANG=zh_CN.GBK cd /home/jboss/bin date=1_`date +%Y-%m-%d\ %H:%M`.lognohup ./run.sh -b 127.0.0.1 -c app > "logs/app.logs" &2、stop腳本:${JBOSS_HOME}/bin/stop-app.sh cd /home/jboss/bin echo `date +%F\ %T` >> logs/shutdown.log nohup ./shutdown.sh -S -s 127.0.0.1:1199 -u admin -p admin >> "logs/shutdown.log" 2>&1 &
stop腳本最主要是端口和用戶名密碼,其中服務器配置的JNDI端口(默認端口為1099)在${JBOSS_HOME}/server/app/conf/jboss-service.xml文件中: <mbean code="org.jboss.naming.NamingService"name="jboss:service=Naming"xmbean-dd="resource:xmdesc/NamingService-xmbean.xml"><!-- The call by value mode. true if all lookups are unmarshalled usingthe caller's TCL, false if in VM lookups return the value by reference.--><attribute name="CallByValue">false</attribute><!-- The listening port for the bootstrap JNP service. Set this to -1to run the NamingService without the JNP invoker listening port.--><attribute name="Port">1099</attribute><!-- The bootstrap JNP server bind address. This also sets the defaultRMI service bind address. Empty == all addresses-->
用戶名和密碼在${JBOSS_HOME}/server/app/conf/props/jmx-console-users.properties文件中,也可以新增,如admin=admin
總結
以上是生活随笔為你收集整理的Centos下Web中间件Jboss应用发布start和stop脚本范例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 算法导论之二项堆
- 下一篇: Java解码网站post字符串(swic