| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT sources DOT redhat DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sources DOT redhat DOT com> |
| List-Help: | <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT sources DOT redhat DOT com |
| Delivered-To: | mailing list cygwin AT sources DOT redhat DOT com |
| Date: | Fri, 2 Feb 2001 22:49:09 +0100 |
| From: | Corinna Vinschen <cygwin AT cygwin DOT com> |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: sshd and stack dump problem |
| Message-ID: | <20010202224909.S19867@cygbert.vinschen.de> |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| References: | <B7F9A3E3FDDDD11185510000F8BDBBF2049E80A0 AT mcdc-atl-5 DOT cdc DOT gov> |
| Mime-Version: | 1.0 |
| User-Agent: | Mutt/1.2.5i |
| In-Reply-To: | <B7F9A3E3FDDDD11185510000F8BDBBF2049E80A0@mcdc-atl-5.cdc.gov>; from xxh1@cdc.gov on Fri, Feb 02, 2001 at 12:16:49PM -0500 |
On Fri, Feb 02, 2001 at 12:16:49PM -0500, Heitzso wrote:
> * when I kill the service (sc stop service_name)
> the service doesn't die. I'm guessing SRVANY
> is stopped but that sshd has spawned itself
> out of SRVANY's control and lives on.
That's normal behaviour since sshd doesn't have a clue what
a NT service is. SRVANY stops but you will have to kill
the application by hand. Personally, I'm using the following
script to stop sshd:
#!/bin/sh
net stop sshd >/dev/null 2>&1
PID=`ps -e | awk '/sshd/{print $1}'`
if [ -n "${PID}" ]
then
kill $PID
fi
Sorry, I have no clue why ls hangs.
Corinna
--
Corinna Vinschen Please, send mails regarding Cygwin to
Cygwin Developer mailto:cygwin AT cygwin DOT com
Red Hat, Inc.
--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |