Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 41851 invoked from network); 17 Mar 2008 13:51:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Mar 2008 13:51:40 -0000 Received: (qmail 94086 invoked by uid 500); 17 Mar 2008 13:51:27 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 94069 invoked by uid 500); 17 Mar 2008 13:51:27 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 94058 invoked by uid 99); 17 Mar 2008 13:51:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Mar 2008 06:51:27 -0700 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=IP_LINK_PLUS,NORMAL_HTTP_TO_IP,SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [206.253.186.151] (HELO tamsmtp1.chasepaymentech.com) (206.253.186.151) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Mar 2008 13:50:47 +0000 X-IronPort-AV: E=Sophos;i="4.25,512,1199685600"; d="scan'208";a="2421460" X-IronPort-Term-List: On Received: from stamexchange2.paymentech.us ([172.16.52.200]) by tamsmtp1-priv.chasepaymentech.com with ESMTP; 17 Mar 2008 08:50:56 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Mon, 17 Mar 2008 09:50:56 -0400 Message-ID: In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [users@httpd] [warn] worker http://some_ip:port/context already used by another worker ? Thread-Index: AciGASJB03UoCNwvS+K7MacnxOntNACNLCwg From: "Wilda, Jet" To: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org Subject: RE: [users@httpd] [warn] worker http://some_ip:port/context already used by another worker ? I'm guessing that no one else is running 2.2.8 as a reverse proxy? ~Jet -----Original Message----- From: Wilda, Jet=20 Hi, I just compiled Apache httpd 2.2.8 on RedHat 4.6 with kernel 2=2E6.9-67.ELsmp i686. I started it up using my configuration files from our 2.0.61 (changed the LoadModule statements to use the new names for the ones that changed) and now I get=20 [root@stamlnx1 logs]# service phttpd restart Stopping phttpd: [ OK ] Starting phttpd:=20 [Fri Mar 14 14:21:23 2008] [warn] worker http://172.17.52.28:8091/saleslead already used by another worker [Fri Mar 14 14:21:23 2008] [warn] worker http://172.18.54.39:9001/leads/verizon already used by another worker [ OK ] How do I fix this? Also we didn't get these warnings on 2.0.61.=20 Here is basically what the VHOST looks like: ServerName secure-lnx1.tampa.paymentech.com Timeout 1200 SSLEngine on SSLProtocol -all +TLSv1 +SSLv3 SSLCipherSuite SSLv3:+HIGH:+MEDIUM:TLSv1:+HIGH:+MEDIUM SSLCertificateFile /sw/ssl.crt/servername.com.pem SSLCertificateKeyFile /sw/ssl.key/servername.com.key.pem #To prevent XST(cross-site tracing) RewriteEngine On RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK) RewriteRule .* -[F] ProxyPass /saleslead http://172.17.52.28:8091/saleslead ProxyPassReverse /saleslead http://172.17.52.28:8091/saleslead ProxyPass /salesleadv2 http://172.17.52.28:8091/salesleadv2 ProxyPassReverse /salesleadv2 http://172.17.52.28:8091/salesleadv2 ProxyPass /saleslead http://172.17.52.28:8091/saleslead ProxyPassReverse /saleslead http://172.17.52.28:8091/saleslead ProxyPass /salesleadv2 http://172.17.52.28:8091/salesleadv2 ProxyPassReverse /salesleadv2 http://172.17.52.28:8091/salesleadv2 CustomLog logs/secure-lnx1.log combined=20 ErrorLog logs/secure-lnx1-error.log Here is the settings that I used to compile Apache httpd 2.2.8 ./configure --prefix=3D/home/jwilda/build/httpd.worker \ --with-included-apr \ --enable-so \ --enable-mods-shared=3Dall \ --with-mpm=3Dworker \ --enable-ssl=3Dshared \ --enable-rule=3DSSL_EXPERIMENTAL \ --enable-auth-anon=3Dshared \ --enable-auth-dbm=3Dshared \ --enable-auth-digest=3Dshared \ --enable-cache=3Dshared \ --enable-cern-meta=3Dshared \ --enable-charset-lite=3Dshared \ --enable-dav=3Dshared \ --enable-dav-fs=3Dshared \ --enable-dav-lock=3Dshared \ --enable-deflate=3Dshared \ --enable-disk-cache=3Dshared \ --enable-expires=3Dshared \ --enable-ext-filter=3Dshared \ --enable-file-cache=3Dshared \ --enable-headers=3Dshared \ --enable-info=3Dshared \ --enable-logio=3Dshared \ --enable-mem-cache=3Dshared \ --enable-mime-magic=3Dshared \ --enable-isapi=3Dshared \ --enable-proxy=3Dshared \ --enable-proxy-ajp=3Dshared \ --enable-proxy-balancer=3Dshared \ --enable-proxy-connect=3Dshared \ --enable-proxy-ftp=3Dshared \ --enable-proxy-http=3Dshared \ --enable-rewrite=3Dshared \ --enable-speling=3Dshared \ --enable-unique-id=3Dshared \ --enable-usertrack=3Dshared \ --enable-vhost-alias=3Dshared \ --datadir=3D/var/www \ --libdir=3D/usr/lib/httpd2.2/lib \ --libexecdir=3D/usr/lib/httpd2.2/modules \ --enable-suexec=3Dshared \ --with-suexec \ --with-suexec-caller=3Dapache \ --with-suexec-docroot=3D/var/www \ --with-suexec-uidmin=3D500 \ --with-suexec-gidmin=3D100 \ CPPFLAGS=3D"-DSSL_EXPERIMENTAL_ENGINE" Thanks in advance for any and all help. Thanks, ~Jet ---------- Learn more about Chase Paymentech Solutions,LLC payment processing services at www.chasepaymentech.com. THIS MESSAGE IS CONFIDENTIAL. This e-mail message and any attachments are proprietary and confidential information intended only for the use of the recipient(s) named above. If you are not the intended recipient, you may not print, distribute, or copy this message or any attachments. If you have received this communication in error, please notify the sender by return e-mail and delete this message and any attachments from your computer. --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org ---------- Learn more about Chase Paymentech Solutions,LLC payment processing services= at www.chasepaymentech.com. THIS MESSAGE IS CONFIDENTIAL. This e-mail message and any attachments are = proprietary and confidential information intended only for the use of the r= ecipient(s) named above. If you are not the intended recipient, you may no= t print, distribute, or copy this message or any attachments. If you have = received this communication in error, please notify the sender by return e-= mail and delete this message and any attachments from your computer. --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org