Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 29203 invoked from network); 17 Apr 2006 04:03:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 17 Apr 2006 04:03:35 -0000 Received: (qmail 52749 invoked by uid 500); 17 Apr 2006 04:03:23 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 52724 invoked by uid 500); 17 Apr 2006 04:03:22 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 52713 invoked by uid 99); 17 Apr 2006 04:03:22 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Apr 2006 21:03:22 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,UNPARSEABLE_RELAY X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [192.51.44.37] (HELO fgwmail7.fujitsu.co.jp) (192.51.44.37) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Apr 2006 21:03:20 -0700 Received: from m2.gw.fujitsu.co.jp ([10.0.50.72]) by fgwmail7.fujitsu.co.jp (Fujitsu Gateway) with ESMTP id k3H42wZ0006711 for ; Mon, 17 Apr 2006 13:02:58 +0900 (envelope-from taniguchi.yasu@jp.fujitsu.com) Received: from s5.gw.fujitsu.co.jp by m2.gw.fujitsu.co.jp (8.12.10/Fujitsu Domain Master) id k3H42vlw014624 for ; Mon, 17 Apr 2006 13:02:57 +0900 (envelope-from taniguchi.yasu@jp.fujitsu.com) Received: from s5.gw.fujitsu.co.jp (s5 [127.0.0.1]) by s5.gw.fujitsu.co.jp (Postfix) with ESMTP id 1DAED1B805D for ; Mon, 17 Apr 2006 13:02:57 +0900 (JST) Received: from ml8.s.css.fujitsu.com (ml8.s.css.fujitsu.com [10.23.4.198]) by s5.gw.fujitsu.co.jp (Postfix) with ESMTP id BEAA41B8062 for ; Mon, 17 Apr 2006 13:02:56 +0900 (JST) Received: from ml8.css.fujitsu.com (ml8 [127.0.0.1]) by ml8.s.css.fujitsu.com (Postfix) with ESMTP id A1F0A4B8837 for ; Mon, 17 Apr 2006 13:02:56 +0900 (JST) Received: from taniguti.jp.fujitsu.com (x095029.kb.fst.fujitsu.com [10.249.95.29]) by ml8.s.css.fujitsu.com (Postfix) with SMTP id 3529A4B8804 for ; Mon, 17 Apr 2006 13:02:56 +0900 (JST) Message-Id: <200604170405.AA03597@taniguti.jp.fujitsu.com> From: Yasunori Taniguchi Date: Mon, 17 Apr 2006 13:05:24 +0900 To: "Tomcat Users List" Subject: Re: Stopping of tomcat failed. In-Reply-To: <200604070354.AA03561@taniguti.jp.fujitsu.com> References: <200604070354.AA03561@taniguti.jp.fujitsu.com> MIME-Version: 1.0 X-Mailer: AL-Mail32 Version 1.13 Content-Type: text/plain; charset=iso-2022-jp X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi. I want help about the following matter. I got an information that : Apache was killed. This is the correct operation for apache. According to the following matter, tomcat was communicating with apache, and probably any web application process was executing. Is it really ? If there is no web application executing, the following matter never happen ? Yasunori Taniguchi さんは書きました: >Hi. > >Please help me. > >I'm using apache and tomcat to use Web-based GUI tool on RHEL3.0. >The GUI tool has a shell script that starts/stops apache and tomcat. >This script with stop option displayed message "[FAILED]". >It means that stopping of tomcat has been failed. >But the tomcat was disappeared in the process list. And re-execution of stop was >failed as same as the execution of stop after succeeded-stop. (The messages output >to catalina.out is tha same.) >Then GUI tool was not used at that time. >In the script, all the messages were discarded to /dev/null, and nothing related >message was output to /var/log/messages or catalina.out. >So, I want to know : >1. Did tomcat stopped clearly ? > For example, are there any possibilities that tomcat leave garbage of files ? > Restart of tomcat was succeeded. Does it mean that tomcat has stopped clearly ? >2. What kind of error is guessed ? > >----------------------------------------------------------------------------------- >#!/bin/sh ># ># Startup script ># ># chkconfig: 345 80 15 ># description: ># > >### BEGIN INIT INFO ># Provides: test ># Required-Start: $network $remote_fs ># Required-Stop: ># Default-Start: 3 5 ># Default-Stop: 0 1 2 6 ># Description: Start the gui daemon >### END INIT INFO > ># Shell functions sourced from /etc/rc.status: ># rc_check check and set local and overall rc status ># rc_status check and set local and overall rc status ># rc_status -v ditto but be verbose in local rc status ># rc_status -v -r ditto and clear the local rc status ># rc_failed set local and overall rc status to failed ># rc_failed set local and overall rc status to ># rc_reset clear local rc status (overall remains) ># rc_exit exit appropriate to overall rc status >cd / > >if [ -f /etc/rc.status ]; then > . /etc/rc.status >fi >if [ -f /etc/init.d/functions ]; then > . /etc/init.d/functions >fi > >if [ -f /etc/rc.status ]; then ># First reset status of this service >rc_reset >fi > >case "$1" in >'start') > echo -n "Starting the service " > if [ -f /etc/init.d/functions ]; then > daemon "/usr/local/tomcat/bin/startup.sh" > /opt/FJSVihs/bin/httpd -f /usr/local/apache/conf/httpd.conf 2> /dev/null > else > /usr/local/tomcat/bin/startup.sh > /dev/null > /opt/FJSVihs/bin/httpd -f /usr/local/apache/conf/httpd.conf 2> /dev/null > fi > if [ -f /etc/rc.status ]; then > rc_status -v > fi > if [ -f /etc/init.d/functions ]; then > touch /var/lock/subsys/test > echo > fi > ;; >'stop') > echo -n "Stopping service." > kill `cat /usr/local/apache/httpd.pid` > if [ -f /etc/init.d/functions ]; then > daemon "/usr/local/tomcat/bin/shutdown.sh" > else > /usr/local/tomcat/bin/shutdown.sh > /dev/null > fi > if [ -f /etc/rc.status ]; then > rc_status -v > fi > if [ -f /etc/init.d/functions ]; then > rm -f /var/lock/subsys/test > echo > fi > ;; >'restart') > $0 stop > $0 start > if [ -f /etc/rc.status ]; then > rc_status > fi > ;; >'status') > if [ -f /etc/rc.status ]; then > echo -n "Checking: " > if [ -f /usr/local/apache/httpd.pid ]; then > rc_failed 0 > rc_status -v > exit 0 > else > rc_failed 3 > rc_status -v > exit 3 > fi > fi > ;; >*) > echo "Usage: $0 {start|stop|restart|status}" > ;; >esac >exit 0 > >Regards >Taniguchi > >-- >Open Source Software Database Prj. Middleware Platform Div. >Software Unit, Fujitsu Limited >Yasunori Taniguchi >e-mail : taniguchi.yasu@jp.fujitsu.com > >office layout was changed in 26th Sep., and phone number was changed !!!! >phone:+81-78-304-0563 ext.:7773-5431 > > >--------------------------------------------------------------------- >To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org >For additional commands, e-mail: users-help@tomcat.apache.org > > -------- from : 谷口@神戸 (MWPF2開発) address : taniguchi.yasu@jp.fujitsu.com TEL:7773-5431 (078-304-0563) --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org