Return-Path: Delivered-To: apmail-geronimo-user-archive@www.apache.org Received: (qmail 143 invoked from network); 7 May 2008 20:49:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 May 2008 20:49:10 -0000 Received: (qmail 67052 invoked by uid 500); 7 May 2008 20:48:58 -0000 Delivered-To: apmail-geronimo-user-archive@geronimo.apache.org Received: (qmail 67027 invoked by uid 500); 7 May 2008 20:48:57 -0000 Mailing-List: contact user-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: user@geronimo.apache.org List-Id: Delivered-To: mailing list user@geronimo.apache.org Received: (qmail 67011 invoked by uid 99); 7 May 2008 20:48:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 May 2008 13:48:57 -0700 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [206.228.125.80] (HELO domino.teamhuber.com) (206.228.125.80) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 May 2008 20:48:07 +0000 In-Reply-To: <17113713.post@talk.nabble.com> References: <17113713.post@talk.nabble.com> To: user@geronimo.apache.org MIME-Version: 1.0 Subject: Re: Looking for init.d / rc.d script X-KeepSent: 06790378:80D666D5-86257442:0071DB05; type=4; name=$KeepSent X-Mailer: Lotus Notes Release 8.0.1 February 07, 2008 From: DFrahm@teamhuber.com Message-ID: Date: Wed, 7 May 2008 15:46:32 -0500 X-MIMETrack: Serialize by Router on domino.teamhuber.com/Teamhuber(Release 8.0.1|February 07, 2008) at 05/07/2008 03:46:50 PM, Serialize complete at 05/07/2008 03:46:50 PM Content-Type: multipart/alternative; boundary="=_alternative 0072492D86257442_=" X-Virus-Checked: Checked by ClamAV on apache.org This is a multipart message in MIME format. --=_alternative 0072492D86257442_= Content-Type: text/plain; charset="US-ASCII" Mine is just a wrapper for the scripts that come with Geronimo (WAS-CE in my case, but I think its basically the same thing except for the install path). #!/bin/sh # # wasce Startup script for the IBM WAS-CE Server # # chkconfig: 2345 80 20 # description: WebSphere Application Server Community Edition ### BEGIN INIT INFO # Description: WebSphere Application Server Community Edition ### END INIT INFO case "$1" in start) /opt/IBM/WebSphere/AppServerCommunityEdition/bin/startup.sh ;; stop) /opt/IBM/WebSphere/AppServerCommunityEdition/bin/shutdown.sh ;; restart) /opt/IBM/WebSphere/AppServerCommunityEdition/bin/shutdown.sh /opt/IBM/WebSphere/AppServerCommunityEdition/bin/startup.sh ;; esac exit 0 From: Josh Highley To: user@geronimo.apache.org Date: 05/07/2008 03:13 PM Subject: Looking for init.d / rc.d script Geronimo 2.1.1 on openSUSE 10.3 I'm looking for an init.d script to start and kill Geronimo service. This seems like a common file that would be out there all over the place, but I've Googled every way I can think of and haven't found anything. Thanks, Josh -- View this message in context: http://www.nabble.com/Looking-for-init.d---rc.d-script-tp17113713s134p17113713.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com. --=_alternative 0072492D86257442_= Content-Type: text/html; charset="US-ASCII"
Mine is just a wrapper for the scripts that come with Geronimo (WAS-CE in my case, but I think its basically the same thing except for the install path).

#!/bin/sh
#
# wasce        Startup script for the IBM WAS-CE Server
#
# chkconfig: 2345 80 20
# description: WebSphere Application Server Community Edition
### BEGIN INIT INFO
# Description:         WebSphere Application Server Community Edition
### END INIT INFO

case "$1" in
    start)
        /opt/IBM/WebSphere/AppServerCommunityEdition/bin/startup.sh
        ;;
    stop)
        /opt/IBM/WebSphere/AppServerCommunityEdition/bin/shutdown.sh
        ;;
    restart)
        /opt/IBM/WebSphere/AppServerCommunityEdition/bin/shutdown.sh
        /opt/IBM/WebSphere/AppServerCommunityEdition/bin/startup.sh
        ;;
esac

exit 0


From: Josh Highley <nabble.com@joshhighley.com>
To: user@geronimo.apache.org
Date: 05/07/2008 03:13 PM
Subject: Looking for init.d / rc.d script






Geronimo 2.1.1 on openSUSE 10.3

I'm looking for an init.d script to start and kill Geronimo service.  This
seems like a common file that would be out there all over the place, but
I've Googled every way I can think of and haven't found anything.

Thanks,

Josh
--
View this message in context:
http://www.nabble.com/Looking-for-init.d---rc.d-script-tp17113713s134p17113713.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.



--=_alternative 0072492D86257442_=--