Re: Cygrunsrv problem starting service created with --user

2002-12-23 Thread Igor Pechtchanski
PROTECTED]> > Sent: Monday, December 23, 2002 10:59 AM > Subject: Re: Cygrunsrv problem starting service created with --user > > > > I am doing something similar and have been following this thread because I > > have run into the same problem... > > > > my qu

Re: Cygrunsrv problem starting service created with --user

2002-12-23 Thread Terry
, which I found easy enough. Doh! ~ Terry 757 581-5981 AIM/Yahoo: lv2bounce - Original Message - From: "Igor Pechtchanski" <[EMAIL PROTECTED]> To: "Terry" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, December 23, 2002 11:30 AM Subject:

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-24 Thread Mark Geisert
Chris Roehrig wrote: I have a network of Windows, Linux and Mac machines and I use rsync to synchronize various directories between them. I'm trying to figure out why my rsync transfers are so slow (<4 MB/s) only when the remote endpoint is Cygwin rsync over sshd (with both a Linux or Cygwin r

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-24 Thread Chris Roehrig
Here's my test in a nutshell: # ON WINDOWS: install Cygwin and enable cygsshd ssh-host-config -y # set up authorized keys, etc to make things easier # LINUX: Create a 2GB random file on Linux: dd if=/dev/urandom of=/tmp/bigfile.bin bs=1M count=2000 # WINDOWS: rsync "pull"

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-24 Thread NightStrike via Cygwin
On Tue, Aug 24, 2021, 09:50 Chris Roehrig wrote: > I have a network of Windows, Linux and Mac machines and I use rsync to > synchronize various directories between them. > > I'm trying to figure out why my rsync transfers are so slow (<4 MB/s) only > when the remote endpoint is Cygwin rsync over

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-24 Thread Chris Roehrig
Here's the other direction with rsync also in --daemon mode: # ON WINDOWS (from a mintty terminal): dd if=/dev/urandom of=/tmp/bigfile.bin bs=1M count=2000 # create 2GB file printf "[TMP]\npath = /tmp\n" > /etc/rsyncd.conf # create rsyncd.conf

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-24 Thread Mark Geisert
NightStrike via Cygwin wrote: Older versions of windows had a setting to optimize the OS for either background services or foreground applications. One of the things this did was throttle network usage. I don't know if windows 10 has the same setting though. Yes, it does. Getting to it is a pa

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-25 Thread Takashi Yano via Cygwin
On Tue, 24 Aug 2021 12:49:52 -0700 Chris Roehrig wrote: > I have a network of Windows, Linux and Mac machines and I use rsync to > synchronize various directories between them. > > I'm trying to figure out why my rsync transfers are so slow (<4 MB/s) only > when the remote endpoint is Cygwin rsy

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-25 Thread Chris Roehrig
It was set to "Programs".Changing it to "Background services" didn't make a difference. TCPOptimizer can adjust 2 registry entries that I think are related to that Windows Setting: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile] "NetworkT

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-25 Thread Chris Roehrig
The FILE_FLAG_OVERLAPPED avenue looks promising. I get exactly the same results as you using 'scp': 4MB/s in either direction (with either remote endpoint.) I guess the next step is to install a build environment and build rsync and sshd ... On Wed Aug 25 2021, at 4:18 AM, Takashi Ya

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-25 Thread Ken Brown via Cygwin
On 8/25/2021 7:18 AM, Takashi Yano via Cygwin wrote: On Tue, 24 Aug 2021 12:49:52 -0700 Chris Roehrig wrote: I have a network of Windows, Linux and Mac machines and I use rsync to synchronize various directories between them. I'm trying to figure out why my rsync transfers are so slow (<4 MB/s

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-25 Thread Chris Roehrig
On Wed Aug 25 2021, at 10:52 AM, Ken Brown via Cygwin wrote: > A couple years ago I had an idea for changing the pipe implementation to > avoid overlapped I/O: > > https://cygwin.com/pipermail/cygwin-patches/2019q2/009393.html > https://cygwin.com/pipermail/cygwin-patches/2019q2/009423.html >

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-25 Thread Chris Roehrig
It looks like there was a previous (2013) patch and attempt to add a pipe_nooverlap CYGWIN option that was rejected by the maintainers: https://stackoverflow.com/questions/10385424/good-alternatives-to-cygwin-cygwin-doesnt-support-natively-support-win32-app Is this something that can be revisite

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-25 Thread Mario Emmenlauer
On 25.08.21 19:52, Ken Brown via Cygwin wrote: A couple years ago I had an idea for changing the pipe implementation to avoid overlapped I/O:   https://cygwin.com/pipermail/cygwin-patches/2019q2/009393.html   https://cygwin.com/pipermail/cygwin-patches/2019q2/009423.html I never followed up

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-25 Thread Takashi Yano via Cygwin
On Wed, 25 Aug 2021 13:52:19 -0400 Ken Brown wrote: > On 8/25/2021 7:18 AM, Takashi Yano via Cygwin wrote: > > On Tue, 24 Aug 2021 12:49:52 -0700 > > Chris Roehrig wrote: > >> I have a network of Windows, Linux and Mac machines and I use rsync to > >> synchronize various directories between them.

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-26 Thread Ken Brown via Cygwin
On 8/25/2021 2:18 PM, Chris Roehrig wrote: On Wed Aug 25 2021, at 10:52 AM, Ken Brown via Cygwin wrote: A couple years ago I had an idea for changing the pipe implementation to avoid overlapped I/O: https://cygwin.com/pipermail/cygwin-patches/2019q2/009393.html https://cygwin.com/pipermai

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-26 Thread Ken Brown via Cygwin
On 8/25/2021 4:33 PM, Mario Emmenlauer wrote: On 25.08.21 19:52, Ken Brown via Cygwin wrote: A couple years ago I had an idea for changing the pipe implementation to avoid overlapped I/O:    https://cygwin.com/pipermail/cygwin-patches/2019q2/009393.html    https://cygwin.com/pipermail/cygwin-p

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-26 Thread Ken Brown via Cygwin
On 8/25/2021 5:29 PM, Takashi Yano wrote: On Wed, 25 Aug 2021 13:52:19 -0400 Ken Brown wrote: On 8/25/2021 7:18 AM, Takashi Yano via Cygwin wrote: On Tue, 24 Aug 2021 12:49:52 -0700 Chris Roehrig wrote: I have a network of Windows, Linux and Mac machines and I use rsync to synchronize various

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-26 Thread Ken Brown via Cygwin
On 8/26/2021 11:56 AM, Ken Brown via Cygwin wrote: On 8/25/2021 5:29 PM, Takashi Yano wrote: On Wed, 25 Aug 2021 13:52:19 -0400 Ken Brown wrote: On 8/25/2021 7:18 AM, Takashi Yano via Cygwin wrote: On Tue, 24 Aug 2021 12:49:52 -0700 Chris Roehrig wrote: I have a network of Windows, Linux and M

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-27 Thread Takashi Yano via Cygwin
On Thu, 26 Aug 2021 18:18:29 -0400 Ken Brown wrote: > On 8/26/2021 11:56 AM, Ken Brown via Cygwin wrote: > > On 8/25/2021 5:29 PM, Takashi Yano wrote: > >> On Wed, 25 Aug 2021 13:52:19 -0400 > >> Ken Brown wrote: > >>> On 8/25/2021 7:18 AM, Takashi Yano via Cygwin wrote: > On Tue, 24 Aug 2021

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-27 Thread Ken Brown via Cygwin
On 8/27/2021 7:24 AM, Takashi Yano wrote: On Thu, 26 Aug 2021 18:18:29 -0400 Ken Brown wrote: On 8/26/2021 11:56 AM, Ken Brown via Cygwin wrote: [...] In case you want to try out my proposed change, I've just rebased the patches to the current master and pushed them to a new topic/pipe branch.

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-27 Thread Takashi Yano via Cygwin
On Fri, 27 Aug 2021 12:00:50 -0400 Ken Brown wrote: > On 8/27/2021 7:24 AM, Takashi Yano wrote: > > On Thu, 26 Aug 2021 18:18:29 -0400 > > Ken Brown wrote: > >> On 8/26/2021 11:56 AM, Ken Brown via Cygwin wrote: > [...] > >> In case you want to try out my proposed change, I've just rebased the >

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-27 Thread Takashi Yano via Cygwin
On Sat, 28 Aug 2021 02:21:11 +0900 Takashi Yano wrote: > On Fri, 27 Aug 2021 12:00:50 -0400 > Ken Brown wrote: > > > On 8/27/2021 7:24 AM, Takashi Yano wrote: > > > On Thu, 26 Aug 2021 18:18:29 -0400 > > > Ken Brown wrote: > > >> On 8/26/2021 11:56 AM, Ken Brown via Cygwin wrote: > > [...] > > >>

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-27 Thread Takashi Yano via Cygwin
On Sat, 28 Aug 2021 11:00:24 +0900 Takashi Yano wrote: > On Sat, 28 Aug 2021 02:21:11 +0900 > Takashi Yano wrote: > > > On Fri, 27 Aug 2021 12:00:50 -0400 > > Ken Brown wrote: > > > > > On 8/27/2021 7:24 AM, Takashi Yano wrote: > > > > On Thu, 26 Aug 2021 18:18:29 -0400 > > > > Ken Brown wrote: >

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-28 Thread Corinna Vinschen via Cygwin
On Aug 28 02:21, Takashi Yano via Cygwin wrote: > On Fri, 27 Aug 2021 12:00:50 -0400 > Ken Brown wrote: > > Two years ago I thought I needed nt_create to avoid problems when calling > > set_pipe_non_blocking. Are you saying that's not an issue? Is > > set_pipe_non_blocking unnecessary? Is that

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-28 Thread Takashi Yano via Cygwin
On Sat, 28 Aug 2021 10:43:27 +0200 Corinna Vinschen wrote: > On Aug 28 02:21, Takashi Yano via Cygwin wrote: > > On Fri, 27 Aug 2021 12:00:50 -0400 > > Ken Brown wrote: > > > Two years ago I thought I needed nt_create to avoid problems when calling > > > set_pipe_non_blocking. Are you saying that

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-28 Thread Corinna Vinschen via Cygwin
On Aug 28 18:41, Takashi Yano via Cygwin wrote: > On Sat, 28 Aug 2021 10:43:27 +0200 > Corinna Vinschen wrote: > > On Aug 28 02:21, Takashi Yano via Cygwin wrote: > > > On Fri, 27 Aug 2021 12:00:50 -0400 > > > Ken Brown wrote: > > > > Two years ago I thought I needed nt_create to avoid problems whe

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-28 Thread Ken Brown via Cygwin
On 8/28/2021 4:43 AM, Corinna Vinschen via Cygwin wrote: On Aug 28 02:21, Takashi Yano via Cygwin wrote: On Fri, 27 Aug 2021 12:00:50 -0400 Ken Brown wrote: Two years ago I thought I needed nt_create to avoid problems when calling set_pipe_non_blocking. Are you saying that's not an issue? Is

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-28 Thread Takashi Yano via Cygwin
On Sat, 28 Aug 2021 13:58:08 +0200 Corinna Vinschen wrote: > On Aug 28 18:41, Takashi Yano via Cygwin wrote: > > On Sat, 28 Aug 2021 10:43:27 +0200 > > Corinna Vinschen wrote: > > > On Aug 28 02:21, Takashi Yano via Cygwin wrote: > > > > On Fri, 27 Aug 2021 12:00:50 -0400 > > > > Ken Brown wrote: >

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-28 Thread Ken Brown via Cygwin
On 8/28/2021 11:43 AM, Takashi Yano via Cygwin wrote: On Sat, 28 Aug 2021 13:58:08 +0200 Corinna Vinschen wrote: On Aug 28 18:41, Takashi Yano via Cygwin wrote: On Sat, 28 Aug 2021 10:43:27 +0200 Corinna Vinschen wrote: On Aug 28 02:21, Takashi Yano via Cygwin wrote: On Fri, 27 Aug 2021 12:00

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Takashi Yano via Cygwin
Hi Ken, On Sat, 28 Aug 2021 16:55:52 -0400 Ken Brown wrote: > On 8/28/2021 11:43 AM, Takashi Yano via Cygwin wrote: > > On Sat, 28 Aug 2021 13:58:08 +0200 > > Corinna Vinschen wrote: > >> On Aug 28 18:41, Takashi Yano via Cygwin wrote: > >>> On Sat, 28 Aug 2021 10:43:27 +0200 > >>> Corinna Vinsche

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Takashi Yano via Cygwin
On Sat, 28 Aug 2021 18:41:02 +0900 Takashi Yano wrote: > On Sat, 28 Aug 2021 10:43:27 +0200 > Corinna Vinschen wrote: > > On Aug 28 02:21, Takashi Yano via Cygwin wrote: > > > On Fri, 27 Aug 2021 12:00:50 -0400 > > > Ken Brown wrote: > > > > Two years ago I thought I needed nt_create to avoid probl

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Corinna Vinschen via Cygwin
On Aug 29 00:43, Takashi Yano via Cygwin wrote: > On Sat, 28 Aug 2021 13:58:08 +0200 > Corinna Vinschen wrote: > > On Aug 28 18:41, Takashi Yano via Cygwin wrote: > > > On Sat, 28 Aug 2021 10:43:27 +0200 > > > Corinna Vinschen wrote: > > > > On Aug 28 02:21, Takashi Yano via Cygwin wrote: > > > > >

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Ken Brown via Cygwin
On 8/29/2021 5:07 AM, Takashi Yano via Cygwin wrote: On Sat, 28 Aug 2021 18:41:02 +0900 Takashi Yano wrote: On Sat, 28 Aug 2021 10:43:27 +0200 Corinna Vinschen wrote: On Aug 28 02:21, Takashi Yano via Cygwin wrote: On Fri, 27 Aug 2021 12:00:50 -0400 Ken Brown wrote: Two years ago I thought I

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Chris Roehrig
I'd be happy to test it out if you can give me some commands to git it and build it to replace my existing stock Cygwin installation. (Or it is just the cygwin.dll I'd need to replace?) My daily backup scripts use a lot of pipes and named pipes. -- Chris On Sun Aug 29 2021, at 8:57 AM, Ken Br

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Takashi Yano via Cygwin
On Sun, 29 Aug 2021 11:57:04 -0400 Ken Brown wrote: > On 8/29/2021 5:07 AM, Takashi Yano via Cygwin wrote: > > On Sat, 28 Aug 2021 18:41:02 +0900 > > Takashi Yano wrote: > >> On Sat, 28 Aug 2021 10:43:27 +0200 > >> Corinna Vinschen wrote: > >>> On Aug 28 02:21, Takashi Yano via Cygwin wrote: >

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Ken Brown via Cygwin
On 8/29/2021 5:07 AM, Takashi Yano via Cygwin wrote: On Sat, 28 Aug 2021 18:41:02 +0900 Takashi Yano wrote: On Sat, 28 Aug 2021 10:43:27 +0200 Corinna Vinschen wrote: On Aug 28 02:21, Takashi Yano via Cygwin wrote: On Fri, 27 Aug 2021 12:00:50 -0400 Ken Brown wrote: Two years ago I thought I

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Ken Brown via Cygwin
On 8/29/2021 3:37 PM, Takashi Yano wrote: On Sun, 29 Aug 2021 11:57:04 -0400 Ken Brown wrote: On 8/29/2021 5:07 AM, Takashi Yano via Cygwin wrote: On Sat, 28 Aug 2021 18:41:02 +0900 Takashi Yano wrote: On Sat, 28 Aug 2021 10:43:27 +0200 Corinna Vinschen wrote: On Aug 28 02:21, Takashi Yano vi

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Ken Brown via Cygwin
On 8/29/2021 3:24 PM, Chris Roehrig wrote: I'd be happy to test it out if you can give me some commands to git it and build it to replace my existing stock Cygwin installation. (Or it is just the cygwin.dll I'd need to replace?) My daily backup scripts use a lot of pipes and named pipes. It's

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Ken Brown via Cygwin
On 8/29/2021 4:41 AM, Takashi Yano wrote: Hi Ken, On Sat, 28 Aug 2021 16:55:52 -0400 Ken Brown wrote: On 8/28/2021 11:43 AM, Takashi Yano via Cygwin wrote: On Sat, 28 Aug 2021 13:58:08 +0200 Corinna Vinschen wrote: On Aug 28 18:41, Takashi Yano via Cygwin wrote: On Sat, 28 Aug 2021 10:43:27

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Takashi Yano via Cygwin
On Sun, 29 Aug 2021 17:04:56 -0400 Ken Brown wrote: > On 8/29/2021 5:07 AM, Takashi Yano via Cygwin wrote: > > On Sat, 28 Aug 2021 18:41:02 +0900 > > Takashi Yano wrote: > >> On Sat, 28 Aug 2021 10:43:27 +0200 > >> Corinna Vinschen wrote: > >>> On Aug 28 02:21, Takashi Yano via Cygwin wrote: >

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Takashi Yano via Cygwin
On Mon, 30 Aug 2021 09:13:14 +0900 Takashi Yano wrote: > On Sun, 29 Aug 2021 17:04:56 -0400 > Ken Brown wrote: > > On 8/29/2021 5:07 AM, Takashi Yano via Cygwin wrote: > > > On Sat, 28 Aug 2021 18:41:02 +0900 > > > Takashi Yano wrote: > > >> On Sat, 28 Aug 2021 10:43:27 +0200 > > >> Corinna Vinsche

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-29 Thread Ken Brown via Cygwin
On 8/29/2021 8:22 PM, Takashi Yano via Cygwin wrote: On Mon, 30 Aug 2021 09:13:14 +0900 Takashi Yano wrote: On Sun, 29 Aug 2021 17:04:56 -0400 Ken Brown wrote: On 8/29/2021 5:07 AM, Takashi Yano via Cygwin wrote: On Sat, 28 Aug 2021 18:41:02 +0900 Takashi Yano wrote: On Sat, 28 Aug 2021 10:43

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-30 Thread Takashi Yano via Cygwin
On Sun, 29 Aug 2021 22:15:29 -0400 Ken Brown wrote: > On 8/29/2021 8:22 PM, Takashi Yano via Cygwin wrote: > > On Mon, 30 Aug 2021 09:13:14 +0900 > > Takashi Yano wrote: > >> On Sun, 29 Aug 2021 17:04:56 -0400 > >> Ken Brown wrote: > >>> On 8/29/2021 5:07 AM, Takashi Yano via Cygwin wrote: > O

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-30 Thread Chris Roehrig
I got it to build and tried out the topic/pipe branch (checked out on Monday around 4:30pm PDT): 1. I didn't see any improvement in my sshd+rsync time, still 3-4 MB/sec. 2. I get the following error from procps: procps:ps/output.c:2195: please report this bug (I also get this using the main

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-31 Thread Ken Brown via Cygwin
On 8/30/2021 7:58 PM, Chris Roehrig wrote: I got it to build and tried out the topic/pipe branch (checked out on Monday around 4:30pm PDT): 1. I didn't see any improvement in my sshd+rsync time, still 3-4 MB/sec. 2. I get the following error from procps: procps:ps/output.c:2195: please re

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-31 Thread Chris Roehrig
Thanks, I did some more tests: scp also shows no improvement with topic/pipe.I tried running cygsshd with CYGWIN=pipe_byte as well as empty (in the registry HKLM/SYSTEM/CurrentControlSet/Services/cygsshd/Parameters/Environment/), using net stop cygsshd + net start cygsshd to restart

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-31 Thread Chris Roehrig
I did a 'git pull' of the latest topic/pipe and rebuilt and I now do indeed get 100MB/s transfers using both rsync and scp (without pipe_byte). (It turns out last time I forgot 'make install' -- Doh!) I still get the procps error however. On Tue Aug 31 2021, at 12:53 PM, Chris Roehrig wrote:

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-08-31 Thread Brian Inglis
I've found you must also copy the matching cygwin-console-helper.exe for everything to work correctly! On 2021-08-31 14:23, Chris Roehrig wrote: I did a 'git pull' of the latest topic/pipe and rebuilt and I now do indeed get 100MB/s transfers using both rsync and scp (without pipe_byte). (It t

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-01 Thread Chris Roehrig
I rebuild procps 3.3.17.29-2480 from source and it appears to work, so maybe the stock procps package is incompatibility with the current master branch. (However, I built it against the stock /usr/include, not the current branch...) I first needed to 'make /proc/libprocps.la', and there was an

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-02 Thread Ken Brown via Cygwin
On 9/1/2021 5:11 PM, Chris Roehrig wrote: I rebuild procps 3.3.17.29-2480 from source and it appears to work, so maybe the stock procps package is incompatibility with the current master branch. Maybe, but it could also be a Cygwin bug. I'll do a bisection of the Cygwin sources to see if I c

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-02 Thread Chris Roehrig
On Thu Sep 2 2021, at 8:25 AM, Ken Brown via Cygwin wrote: > On 9/1/2021 5:11 PM, Chris Roehrig wrote: >> I rebuild procps 3.3.17.29-2480 from source and it appears to work, so maybe >> the stock procps package is incompatible with the current master branch. > > Maybe, but it could also be a C

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-03 Thread Ken Brown via Cygwin
On 9/2/2021 3:03 PM, Chris Roehrig wrote: On Thu Sep 2 2021, at 8:25 AM, Ken Brown via Cygwin wrote: On 9/1/2021 5:11 PM, Chris Roehrig wrote: I rebuild procps 3.3.17.29-2480 from source and it appears to work, so maybe the stock procps package is incompatible with the current master branch.

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-03 Thread Corinna Vinschen via Cygwin
[resent, this time with the ML in To] On Sep 2 12:03, Chris Roehrig wrote: > > On Thu Sep 2 2021, at 8:25 AM, Ken Brown via Cygwin wrote: > > On 9/1/2021 5:11 PM, Chris Roehrig wrote: > >> I rebuild procps 3.3.17.29-2480 from source and it appears to work, so > >> maybe the stock procps packag

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-03 Thread Chris Roehrig
On Fri Sep 3 2021, at 12:55 PM, Corinna Vinschen wrote: > [resent, this time with the ML in To] > > On Sep 2 12:03, Chris Roehrig wrote: >> >> On Thu Sep 2 2021, at 8:25 AM, Ken Brown via Cygwin >> wrote: >>> On 9/1/2021 5:11 PM, Chris Roehrig wrote: I rebuild procps 3.3.17.29-2480 fro

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-04 Thread Achim Gratz
Am 03.09.2021 um 22:59 schrieb Chris Roehrig: I got procps working I think (both with and without the revert). That likely wasn't what Corinna wanted to know, though. Please re-install the procps-ng, cygwin and cygwin-devel packages from setup (and revert any other alterations you may have ma

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-04 Thread Brian Inglis
On 2021-09-03 14:59, Chris Roehrig wrote: On Fri Sep 3 2021, at 12:55 PM, Corinna Vinschen wrote: On Sep 2 12:03, Chris Roehrig wrote: On Thu Sep 2 2021, at 8:25 AM, Ken Brown via Cygwin wrote: On 9/1/2021 5:11 PM, Chris Roehrig wrote: I rebuild procps 3.3.17.29-2480 from source and it appea

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-05 Thread Achim Gratz
04.09.2021 18:45, Brian Inglis: [...] then to install all binary packages for dogfooding: Would you please stop telling folks to do things that potentially breaks their systems? There are quite a few more steps to take if you want to emulate what setup does. Then again you cannot do that o

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-05 Thread Brian Inglis
On 2021-09-05 02:18, Achim Gratz wrote: 04.09.2021 18:45, Brian Inglis: [...] then to install all binary packages for dogfooding: Would you please stop telling folks to do things that potentially breaks their systems? There are quite a few more steps to take if you want to emulate what set

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-06 Thread Achim Gratz
05.09.2021 17:11, Brian Inglis: The suggestion was intended as a tip to ensure *complete* locally rebuilt package contents are installed, Setup has its "from_cwd" installation mode for precisely that reason: installing a local package without the need to create a full install hierarchy and s

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-16 Thread Keith Christian via Cygwin
I've been following his thread with interest both here and on the Cygwin developers list. I, too rsync between Cygwin and Linux machines. Lots of good debate showing the genius of the folks that support the cygwin infrastructure. Looks like the lively discussion on both lists has stopped. What

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-16 Thread Ken Brown via Cygwin
On 9/16/2021 6:00 PM, Keith Christian via Cygwin wrote: I've been following his thread with interest both here and on the Cygwin developers list. I, too rsync between Cygwin and Linux machines. Lots of good debate showing the genius of the folks that support the cygwin infrastructure. Looks li

Re: cygrunsrv + sshd + rsync = 20 times too slow -- throttled?

2021-09-16 Thread Keith Christian via Cygwin
Ken, Thank you for the reply, this is great news! Looking forward to speedier rsyncs with Cygwin. Keith On Thu, Sep 16, 2021, 16:49 Ken Brown via Cygwin wrote: > On 9/16/2021 6:00 PM, Keith Christian via Cygwin wrote: > > I've been following his thread with interest both here a

Re: cygrunsrv hangs forever on exec error (fix included)

2005-11-13 Thread Corinna Vinschen
On Nov 12 17:44, Christian Franke wrote: > Hi, > > if the exec in cygrunsrv fails or the command exits to early, cygrunsrv > will hang forever. > The service can no longer be controlled until cygrunsrv has been kill(-9)ed. > Auto restart of service does not work in this case. > > > Steps to rep

Re: cygrunsrv hangs forever on exec error (fix included)

2005-11-13 Thread Christian Franke
Corinna Vinschen wrote: [...] Thanks for this report and the simple testcases. The description is very helpful. I just don't really like the idea to leave the service_main function through _exit. Agree. But this is IMO the only way to let SCM automatically restart a failed service if desi

Re: cygrunsrv hangs forever on exec error (fix included)

2005-11-13 Thread Corinna Vinschen
On Nov 13 15:46, Christian Franke wrote: > Corinna Vinschen wrote: > >Thanks for this report and the simple testcases. The description > >is very helpful. I just don't really like the idea to leave the > >service_main function through _exit. > > Agree. But this is IMO the only way to let SCM aut

Re: Cygrunsrv -windows 2k service hangs with message "Stopping"

2005-08-06 Thread C. Linus Hicks
You have to find the cygrunsrv process associated with that service and kill it using Task Manager or whatever. I have not found a way of matching them up, so when I am having problems with one of my Cygwin services, I shut down all other Cygwin services so I don't kill the wrong one. -- lhicks a

Re: Cygrunsrv and other random Cygwin apps, 100% CPU

2005-01-05 Thread Steven E. Harris
Chris Wilson <[EMAIL PROTECTED]> writes: > When I run random Windows applications, Cygrunsrv.exe starts > consuming almost all the CPU. Yes, I saw the same thing last night, after having updated my Cygwin installation over the weekend. In my case I was toying around with Exact Audio Copy, with ba

Re: Cygrunsrv and other random Cygwin apps, 100% CPU

2005-01-06 Thread Chris Wilson
Yep, it looks like CSRSS.EXE is taking whatever is leftover from the Cygwin-related task. I did _MUCH_ web surfing last night, looking for information pertaining to the CSRSS.EXE and it looks like it's basically responsible for handling the Win32 subsystem. I tried tweaking this and that by a

Re: cygrunsrv, sshd, services and not starting after boot

2006-09-02 Thread Igor Peshansky
On Sat, 2 Sep 2006, Ron Dozier wrote: > I noted that a lot of people are having trouble getting the sshd service > to start automatically. I think I discovered a problem. > > Run services.msc and selecting sshd) there is a "Path to executable" > field that currently says :"C:\cygwin\bin\cygrunsrv

Re: cygrunsrv, sshd, services and not starting after boot

2006-09-02 Thread René Berber
Ron Dozier wrote: > > I noted that a lot of people are having trouble getting the sshd service to > start automatically. What? The only problem is that people don't read the _Cygwin_ provided documentation and follow it (or even find it). > I think I discovered a problem. > > Run services.msc

RE: cygrunsrv, sshd, services and not starting after boot

2006-09-03 Thread David Christensen
Ron Dozier wrote > I noted that a lot of people are having trouble getting the sshd > service to start automatically. I've run into the same issue with exim, sshd, and/or cron. I haven't tried to dig for the root cause. Running rebaseall fixes the issue (whatever it is), and that's good enough f

Solved! Re: Cygrunsrv problem starting service created with --user

2002-12-26 Thread Michael Bourgon
I finally found the problem with not being able to start my service (kept getting: cygrunsrv: Error starting a service: QueryServiceStatus: Win32 error 1062: The service has not been started.). WRONG: cygrunsrv --install rsync_daemon --user 'mynetwork\theusername' --path /usr/bin/rsync -a "--daem

Re: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-07 Thread Corinna Vinschen
On Dec 7 13:30, Lavrentiev, Anton (NIH/NLM/NCBI) [C] wrote: > Hi all, > > I have a suggestion that cygrunsrv doesn't ask for any password with > the option -u (and -w not provided), if the specified user is like > "NT SERVICE\svcname", where svcname is the service being added. > > Otherwise, cyg

RE: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-07 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C]
> cygrunsrv -I svcname -u "NT SERVICE\svcname" -p '' I'm not quite sure I follow your suggestion: -p is for path to the actual executable that implements the background process If you meant -w '' (or as documentation suggests '-w ') then it does not work for some reason -- cygrunsrv cannot ins

RE: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-07 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C]
> per the bad user/pass combo, presumably). Per MSDN, http://msdn.microsoft.com/en-us/library/windows/desktop/ms682450%28v=vs.85%29.aspx : If the account name specified by the lpServiceStartName parameter is the name of a managed service account or virtual account name, the lpPassword paramete

Re: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-10 Thread Corinna Vinschen
On Dec 7 16:49, Lavrentiev, Anton (NIH/NLM/NCBI) [C] wrote: > > per the bad user/pass combo, presumably). > > Per MSDN, > http://msdn.microsoft.com/en-us/library/windows/desktop/ms682450%28v=vs.85%29.aspx > : > > If the account name specified by the lpServiceStartName parameter is the name >

RE: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-14 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C]
Just checking whether this is going to be implemented... Thanks, Anton Lavrentiev Contractor NIH/NLM/NCBI > -Original Message- > Sent: Friday, December 07, 2012 11:50 AM > Subject: RE: Cygrunsrv and special Windows virtual accounts "NT > SERVICE" > > &

Re: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-14 Thread Corinna Vinschen
On Dec 14 16:01, Lavrentiev, Anton (NIH/NLM/NCBI) [C] wrote: > Just checking whether this is going to be implemented... http://cygwin.com/ml/cygwin/2012-12/msg00154.html Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader cygwin

RE: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-14 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C]
> http://cygwin.com/ml/cygwin/2012-12/msg00154.html Thanks. > I'm wondering if it's such a bright idea to use a NULL password based on > a check for a certain domain. That's practically guaranteed to break > at one point again. I don’t think Microsoft is going to drop "NT SERVICE\" in any near

Re: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-14 Thread Christopher Faylor
On Fri, Dec 14, 2012 at 05:06:16PM +0100, Corinna Vinschen wrote: >On Dec 14 16:01, Lavrentiev, Anton (NIH/NLM/NCBI) [C] wrote: >> Just checking whether this is going to be implemented... > >http://cygwin.com/ml/cygwin/2012-12/msg00154.html So you're working on it? cgf -- Problem reports:

Re: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-17 Thread Corinna Vinschen
On Dec 14 16:23, Lavrentiev, Anton (NIH/NLM/NCBI) [C] wrote: > > http://cygwin.com/ml/cygwin/2012-12/msg00154.html > > Thanks. > > > I'm wondering if it's such a bright idea to use a NULL password based on > > a check for a certain domain. That's practically guaranteed to break > > at one point

RE: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-17 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C]
> what about '-w -' or a long-only option like --null-pwd? I'd be happy with either! Thanks, Anton Lavrentiev Contractor NIH/NLM/NCBI

Re: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-17 Thread Andrey Repin
Greetings, Corinna Vinschen! > Apart from the fact that NULL is a terrible password, I'd still be more > comfortable to allow a NULL password as a user defined option on the > command line. If not -W NULL, what about '-w -' or a long-only option > like --null-pwd? I'd say, the latter. "-w -" loo

Re: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-18 Thread bartels
On 12/18/2012 05:57 AM, Andrey Repin wrote: what about '-w -' or a long-only option > like --null-pwd? I'd say, the latter. "-w -" looks like you are trying to read password from STDIN. I heartily concur for two reasons: 1) '-w -' really looks like like stdin/out 2) '-' is actually a vali

Re: Cygrunsrv and special Windows virtual accounts "NT SERVICE"

2012-12-18 Thread Corinna Vinschen
On Dec 18 10:45, bartels wrote: > On 12/18/2012 05:57 AM, Andrey Repin wrote: > >> what about '-w -' or a long-only option > >>> like --null-pwd? > >I'd say, the latter. > >"-w -" looks like you are trying to read password from STDIN. > > I heartily concur for two reasons: > > 1) '-w -' really

Re: cygrunsrv -S cygserver on Cygwin86 does not run

2018-03-13 Thread Marco Atzeri
On 14/03/2018 01:38, Tatsuro MATSUOKA wrote: Followingng the below https://cygwin.com/cygwin-ug-net/using-cygserver.html Start Cygwin shell with admin right. $ cygserver-config and /etc/cygserver.conf is created execute $ cygrunsrv -S cygserver On Cygwin86_64 $ ps -a | grep 'cyg' 5428  

Re: cygrunsrv -S cygserver on Cygwin86 does not run

2018-03-14 Thread Tatsuro MATSUOKA
> From: Marco Atzeri > To: cygwin > Cc: > Date: 2018/3/14, Wed 15:28 > Subject: Re: cygrunsrv -S cygserver on Cygwin86 does not run > > On 14/03/2018 01:38, Tatsuro MATSUOKA wrote: >>  Followingng the below >>  https://cygwin.com/cygwin-ug-net/using-cygserver

Re: cygrunsrv -S cygserver on Cygwin86 does not run

2018-03-14 Thread Tatsuro MATSUOKA
> From: Marco Atzeri > To: cygwin > Cc: > Date: 2018/3/14, Wed 15:28 > Subject: Re: cygrunsrv -S cygserver on Cygwin86 does not run > > On 14/03/2018 01:38, Tatsuro MATSUOKA wrote: >> Followingng the below >> https://cygwin.com/cygwin-ug-net/using-cygs

Re: cygrunsrv -S cygserver on Cygwin86 does not run

2018-03-14 Thread Brian Inglis
On 2018-03-14 22:13, Tatsuro MATSUOKA wrote: > On 2018/3/14, Wed 15:28 Marco Atzeri wrote: >> Is it same machine ? >> If so the `cygrunsrv -S cygserver` is starting in both case the 64bit >> version >> and you can not see it as process in 32bit. >> >> The problem is due that the services "cygse

Re: cygrunsrv -S cygserver on Cygwin86 does not run

2018-03-15 Thread Achim Gratz
Tatsuro MATSUOKA writes: > At execute Cygwin setup, kiling all cygwin process is highly recommended > becase setpup execute autorebase. Well, it's mandatory actually. > kill-9-1_32_64.bat > @echo off > C:\cygwin\bin\cygstart --action=runas /bin/kill -9 -1 > C:\cygwin64\bin\cygstart --action=runas

Re: cygrunsrv -S cygserver on Cygwin86 does not run

2018-03-15 Thread Tatsuro MATSUOKA
- Original Message - > From: Brian Inglis  > To: cygwin > Cc: > Date: 2018/3/15, Thu 14:46 > Subject: Re: cygrunsrv -S cygserver on Cygwin86 does not run > > On 2018-03-14 22:13, Tatsuro MATSUOKA wrote: >> On 2018/3/14, Wed 15:28 Marco Atzeri wrote: >>

Re: cygrunsrv -S cygserver on Cygwin86 does not run

2018-03-15 Thread Tatsuro MATSUOKA
- Original Message - > From: Achim Gratz  > To: cygwin > Cc: > Date: 2018/3/16, Fri 03:06 > Subject: Re: cygrunsrv -S cygserver on Cygwin86 does not run > >T atsuro MATSUOKA writes: >> At execute Cygwin setup, kiling all cygwin process is highly recommende

Re: cygrunsrv -S cygserver on Cygwin86 does not run

2018-03-16 Thread Achim Gratz
Tatsuro MATSUOKA writes: > http://cygwin.wikia.com/wiki/Rebaseall > $ cygrunsrv -E > The above seem to be propper way to stop sevice process. …if you need to do it from within Cygwin. If you're doing it from a CMD or BAT file it's easier and slightly more efficient to use the Windows tools. Re

Re: cygrunsrv -L outputs nothing if service paths are quoted

2023-02-06 Thread Corinna Vinschen via Cygwin
On Feb 6 08:43, Bill Stewart via Cygwin wrote: > FYI: > > In our corporate environment we run vulnerability scans, and one of the > most common complaints of the scanner is "unquoted service paths." > > To fix this "vulnerability," I use a quoted service path for cygrunsrv.exe; > e.g.: > > "C:\

Re: cygrunsrv -L outputs nothing if service paths are quoted

2023-02-06 Thread Bill Stewart via Cygwin
On Mon, Feb 6, 2023 at 1:06 PM Corinna Vinschen wrote: Yeah, quoted paths were not handled at all. I pushed a new version > 1.64 which contains a patch. > Great; thanks! Bill -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:

Re: cygrunsrv to have a timeout parameter for service startup

2019-02-15 Thread Corinna Vinschen
On Feb 14 20:47, Lavrentiev, Anton (NIH/NLM/NCBI) [C] via cygwin wrote: > Hi all, > > It looks like the cygrunsrv utility hardcodes 30 seconds as a maximal time > for a service to start, then bails > out with a failure. > > It would be quite useful (in certain situations) to have a command-line

Re: cygrunsrv to have a timeout parameter for service startup

2019-02-15 Thread Andrey Repin
Greetings, Lavrentiev, Anton (NIH/NLM/NCBI) [C]! > It looks like the cygrunsrv utility hardcodes 30 seconds as a maximal time > for a service to start, then bails out with a failure. No, 30 seconds is a hard system timeout in which a service must reply with an appropriate control message to let s

Re: cygrunsrv to have a timeout parameter for service startup

2019-02-15 Thread Corinna Vinschen
On Feb 15 14:44, Andrey Repin wrote: > Greetings, Lavrentiev, Anton (NIH/NLM/NCBI) [C]! > > > It looks like the cygrunsrv utility hardcodes 30 seconds as a maximal time > > for a service to start, then bails out with a failure. > > No, 30 seconds is a hard system timeout in which a service must r

Re: cygrunsrv to have a timeout parameter for service startup

2019-02-15 Thread Andrey Repin
Greetings, Corinna Vinschen! > On Feb 15 14:44, Andrey Repin wrote: >> Greetings, Lavrentiev, Anton (NIH/NLM/NCBI) [C]! >> >> > It looks like the cygrunsrv utility hardcodes 30 seconds as a maximal time >> > for a service to start, then bails out with a failure. >> >> No, 30 seconds is a hard sy

<    1   2   3   4   >