Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 30698 invoked from network); 4 Jun 2008 11:34:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Jun 2008 11:34:48 -0000 Received: (qmail 76528 invoked by uid 500); 4 Jun 2008 11:34:42 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 76410 invoked by uid 500); 4 Jun 2008 11:34:42 -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 76399 invoked by uid 99); 4 Jun 2008 11:34:42 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jun 2008 04:34:42 -0700 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=SPF_PASS,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [61.246.221.181] (HELO tri02mail.trianz.int) (61.246.221.181) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jun 2008 11:33:47 +0000 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Wed, 4 Jun 2008 17:04:10 +0530 Message-ID: <382280FF600DE84C8068473060AEF93602D77FB6@tri02mail.trianz.int> In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [users@httpd] Diffeerent Apache Daemon on RHEL5.1 Thread-Index: AcjFlUNmrAfhj4mbQuSwlwA158tNCgAZxs9gAA4DnwAAAIEecA== References: <382280FF600DE84C8068473060AEF93602D77D13@tri02mail.trianz.int> From: "Vinay Purohit" To: X-Virus-Checked: Checked by ClamAV on apache.org Subject: RE: [users@httpd] Diffeerent Apache Daemon on RHEL5.1 =20 Thanks Jet. Can you please explain in bit more detail i.e. what do you mean by "you = will also need to make a copy of the binary if you truly want separate = daemons" \Vinay -----Original Message----- From: Wilda, Jet [mailto:Jet.Wilda@ChasePaymentech.com]=20 Sent: Wednesday, June 04, 2008 4:48 PM To: users@httpd.apache.org Subject: RE: [users@httpd] Diffeerent Apache Daemon on RHEL5.1 Hi, We basically do approach1, however you will also need to make a copy of = the binary if you truly want separate daemons. ~Jet ________________________________________ From: Vinay Purohit [mailto:Vinay.Purohit@trianz.com] Sent: Wednesday, June 04, 2008 12:36 AM To: users@httpd.apache.org Subject: [users@httpd] Diffeerent Apache Daemon on RHEL5.1 Hi All, I would like to create different apache2.2.8 daemon on RHEL5.1 so that = they can be started and stopped without affecting each other. I do the = same on windows by creating IP based virtual server as different daemon. = To achieve the same on RHEL5.1 I considered the following two = appraoches. I am incliend towards approach 1. Please suggest if approach = 1 is better suited over approach 2. Any comment ? risks ? Approach - 1 (Virtual Servers having same IP Address but with different = hostnames and port numbers) Step 1 - Edit host file with different = hostname (daemon) with same IP Address =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 Like -=A0=A0 10.10.2.97 - = redhat.apple.com =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 = 10.10.2.97 - vs1.apple.com =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 = 10.10.2.97 - vs2.apple.com .... Till n number of daemon. =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 For each virtual server configuration = Step 2 - Create a new server root folder like /usr/App/Apa1 Step 3 - = Copy conf, htdocs and logs from existing main Apache build path = (/usr/App/Apa) to /usr/App/Apa1. Step 4 - Edit httpd.conf file under /usr/App/Apa1/conf as mentioned in = the steps below a.=A0=A0=A0=A0=A0=A0 ServerName vs1.apple.com:90 = b.=A0=A0=A0=A0=A0=A0 Listen 90 c.=A0=A0=A0=A0=A0=A0 DocumentRoot = "/usr/App/Apa1/htdocs" d.=A0=A0=A0=A0=A0=A0 = e.=A0=A0=A0=A0=A0=A0 ServerRoot "/usr/App/Apa1" =A0 Step 5 - Edit httpd-ssl.conf under /usr/App/Apa1/conf/extra as following = - a.=A0=A0=A0=A0=A0=A0 b.=A0=A0=A0=A0=A0=A0 = ServerName vs1.apple.com:636 c.=A0=A0=A0=A0=A0=A0 Listen 636 = d.=A0=A0=A0=A0=A0=A0 DocumentRoot "/usr/App/Apa1/htdocs" Repeat step 2 to 5 for any additional virtual servers = (/usr/App/Apa2.....n) with different host/server name, server root and = ports Approach - 2 (Virtual Servers having different IP Address with = different hostnames and port numbers) Step 1 - Create different virtual = host with different IP Address Step 2 - Follow the steps 2 to 5 in = Approach - 1 =A0 \Vinay =A0 ---------- 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 --------------------------------------------------------------------- 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