From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua1-x934.google.com (mail-ua1-x934.google.com [IPv6:2607:f8b0:4864:20::934]) by sourceware.org (Postfix) with ESMTPS id 6E4C13858C60 for ; Fri, 15 Oct 2021 17:26:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 6E4C13858C60 Received: by mail-ua1-x934.google.com with SMTP id q13so19492872uaq.2 for ; Fri, 15 Oct 2021 10:26:11 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=8HyEP0gLUiYBYxO6r9OIIBHv1+aqFKHcvuSy+7lpjZ0=; b=yUCtU2WA2Z++fItSdp19+xUIzLMHcg1FVrfHF3zkLquaKwpM9jT5Xt5A4lr6/0JPFD VT8I8q7xJmHdkneNv5pq9G2as6VL5eFMILVDnLp+n8Ii10ovcsrnwOXUEVI21rIWH9qZ 0+IODYOi7uYfmzKYZW6oiTEJCoByJ2FZuDx78xaIH+0y5Kp+R2JWTArozJjHkaBM+Cje QAlU/Rt+qv4CA47lgocEGDA4ZGu5k6EC2c/MLC9mlCC5blVbNDMdw/znfoIaaS+tvPgB zKa+ZPoaDojeBYCIvqJqZejLuMYb+MBrop9vPfZS16x7QUREBFdCs5jD8EiWnHNgRpl2 EA0g== X-Gm-Message-State: AOAM532JRyDrdIUTOvttarvUVzeogC8Xyzbdu40uOe4R+W+JvSwlo41p IsacZZgXG/o8/YTWNThv0Xr6fRrDl6vWupt2qYTLTjgJkn5C+Q== X-Google-Smtp-Source: ABdhPJy9VJ45L/zcO5+fiDpb2DHHiQy2YbMHz8/WDHqAHlyxfFmL2+dxjbBk9huvF1FTLvVAekQiZLs4cAlYDKGg/fM= X-Received: by 2002:a67:e28a:: with SMTP id g10mr15413238vsf.5.1634318770762; Fri, 15 Oct 2021 10:26:10 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: OwN-3m-All Date: Fri, 15 Oct 2021 11:25:59 -0600 Message-ID: Subject: Re: Apache Fork Errors - Found on Windows Server 2019 To: cygwin@cygwin.com X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Oct 2021 17:26:12 -0000 > Apache had/has two run modes, pre-forking and threaded. It appears you're running it in pre-forking mode. Try running it in threaded mode. This might be controlled by httpd.conf or some other Apache config file. That is doable, but changing it makes it so that PHP no longer works. To make that change, you just comment out the mpm_prefork.so line and uncomment the mpm_worker.so line to change the mode in httpd.conf: #LoadModule mpm_prefork_module modules/mod_mpm_prefork.so LoadModule mpm_worker_module modules/mod_mpm_worker.so But then, PHP no longer works, so that doesn't really help in this situation, as I must have PHP working. I believe the pre-forking mode used to work previously. I'm trying to test this in Windows 7 and 10 to confirm.