Re: [PHP] PHP httpd debug question

2009-11-17 Thread Devendra Jadhav
Hi,
I am not getting what are you asking but if you want to run two httpd then
you have to run those on different ports.
For this you can change Listen 80 to Listen 2020 from httpd.conf file.
So that one server will run on 80 and other will run on 2020.
you can change 2020 to whatever port you want .. but check if that port is
not already assigned to some other application.


On Tue, Nov 17, 2009 at 5:35 AM, John Beaulaurier -X (jbeaulau - Advanced
Network Info at Cisco) jbeau...@cisco.com wrote:

 Hello,



 phpMyAdmin crashes when access is attempted each time, and I need to run
 an httpd backtrace. I have a question though.



 There is another httpd instance running on the same host. If I run httpd
 -X will it interfere with the other httpd process running, or will

 it be a separate process?



 Thanks

 -John




-- 
Devendra Jadhav
देवेंद्र जाधव


RE: [PHP] PHP httpd debug question

2009-11-17 Thread John Beaulaurier -X (jbeaulau - Advanced Network Info at Cisco)
Hi Devendra

 

That’s sounds like what I’m looking for. I don’t want to interfere with the 
current httpd process serving content while running the debug. 

 

Thanks

-John 

 

From: Devendra Jadhav [mailto:devendra...@gmail.com] 
Sent: Tuesday, November 17, 2009 5:57 AM
To: John Beaulaurier -X (jbeaulau - Advanced Network Info at Cisco)
Cc: php-general@lists.php.net
Subject: Re: [PHP] PHP httpd debug question

 

Hi,
I am not getting what are you asking but if you want to run two httpd then you 
have to run those on different ports.
For this you can change Listen 80 to Listen 2020 from httpd.conf file.
So that one server will run on 80 and other will run on 2020.
you can change 2020 to whatever port you want .. but check if that port is not 
already assigned to some other application. 



On Tue, Nov 17, 2009 at 5:35 AM, John Beaulaurier -X (jbeaulau - Advanced 
Network Info at Cisco) jbeau...@cisco.com wrote:

Hello,



phpMyAdmin crashes when access is attempted each time, and I need to run
an httpd backtrace. I have a question though.



There is another httpd instance running on the same host. If I run httpd
-X will it interfere with the other httpd process running, or will

it be a separate process?



Thanks

-John




-- 
Devendra Jadhav
देवेंद्र जाधव 



Re: [PHP] PHP httpd debug question

2009-11-17 Thread Nathan Rixham
John Beaulaurier -X (jbeaulau - Advanced Network Info at Cisco) wrote:
 That’s sounds like what I’m looking for. I don’t want to interfere with the 
 current httpd process serving content while running the debug. 
 

http://www.google.com/search?q=multiple+apache+instances

note: setting only the same instance to listen on port 2020 or suchlike
as well won't help you here, you need 2 instances

also see: http://httpd.apache.org/dev/debugging.html#crashes

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP httpd debug question

2009-11-16 Thread John Beaulaurier -X (jbeaulau - Advanced Network Info at Cisco)
Hello,

 

phpMyAdmin crashes when access is attempted each time, and I need to run
an httpd backtrace. I have a question though.

 

There is another httpd instance running on the same host. If I run httpd
-X will it interfere with the other httpd process running, or will

it be a separate process?

 

Thanks

-John