Return-Path: Delivered-To: apmail-activemq-users-archive@www.apache.org Received: (qmail 46637 invoked from network); 13 Aug 2008 02:09:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Aug 2008 02:09:30 -0000 Received: (qmail 78433 invoked by uid 500); 13 Aug 2008 02:09:28 -0000 Delivered-To: apmail-activemq-users-archive@activemq.apache.org Received: (qmail 78421 invoked by uid 500); 13 Aug 2008 02:09:28 -0000 Mailing-List: contact users-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@activemq.apache.org Delivered-To: mailing list users@activemq.apache.org Received: (qmail 78410 invoked by uid 99); 13 Aug 2008 02:09:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Aug 2008 19:09:28 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_OPENWHOIS,SPF_HELO_PASS,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Aug 2008 02:08:31 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1KT5nH-0007en-3e for users@activemq.apache.org; Tue, 12 Aug 2008 19:08:59 -0700 Message-ID: <18955816.post@talk.nabble.com> Date: Tue, 12 Aug 2008 19:08:59 -0700 (PDT) From: Janesh S To: users@activemq.apache.org Subject: Re: How to shutdown activemq 5.1.0 server? In-Reply-To: <18902281.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: janesh@tumri.com References: <18884711.post@talk.nabble.com> <7b3355cb0808072325t31386f54tf0d72e76040ec009@mail.gmail.com> <18887750.post@talk.nabble.com> <18902281.post@talk.nabble.com> X-Virus-Checked: Checked by ClamAV on apache.org Hi, Finally I wrote the scripts myself and thought of sharing it on the forum for public reference: #!/bin/sh # Startup script for Apache ActiveMQ ################################################################### MQ_HOME=/apache-activemq-5.1.0 cd $MQ_HOME/bin export SUNJMX="-Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote=true" ./activemq & #!/bin/sh # Shutdown script for Apache ActiveMQ ######################################################### MQ_HOME=/apache-activemq-5.1.0 cd $MQ_HOME/bin java -jar run.jar stop Regards, Jan -- View this message in context: http://www.nabble.com/How-to-shutdown-activemq-5.1.0-server--tp18884711p18955816.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.