glassfish自啟動指令碼

來源:互聯網
上載者:User
vi /etc/init.d/glassfish #!/bin/bash#action="$1"DNAME="Glassfish Server"PATH=/usr/bin:/sbin:/usr/sbin:/optk/binexport PATHGFHOME=/export/home/project/glassfishEXEC=$GFHOME/bin/asadmin PID=`jps -v | grep glassfish |  awk '{print $1}'`USER=projectINSTANCE=domain1case "$action" in    start)        if [ -n "$PID" ]; then                echo "$DNAME is already running, PID=$PID"                exit 1        fi        echo "Starting $DNAME ..."        su - $USER -c "$EXEC start-domain $INSTANCE"         #$EXEC start-domain $INSTANCE        ;;    stop)        if [ -z "$PID" ]; then                echo "$DNAME is not running"                exit 1        fi        echo "Stopping $DNAME ... "        su - $USER -c "$EXEC stop-domain $INSTANCE"        #$EXEC stop-domain $INSTANCE        ;;    status)        if [ -z "$PID" ]; then                echo "$DNAME is not running"                exit 1        fi        echo "$DNAME is already running, PID=$PID"        ;;    *)        echo "Usage: $(basename $0) {start|stop|status}"        ;;esacchmod +x /etc/init.d/glassfish cd /etc/rc3.d/ln -s ../init.d/glassfish S89glassfish 

轉載於http://blog.chinaunix.net/uid-7449361-id-185444.html


第二個版本http://yhjhoo.iteye.com/blog/1154010

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.