Re: [us...@httpd] ssl certifikate mismatch

2010-05-16 Thread Reinhard Vicinus
On 14/05/10 23:08, Eric Covener wrote: On Fri, May 14, 2010 at 4:51 PM, Reinhard Vicinusr.vici...@metaways.de wrote: Hi, is the following behaviour of apache 2.2.15 (debian unstable) a feature or a bug? Listen 10.0.0.1:81 VirtualHost 10.0.0.1:81 SSLEngine on SSLCertificateFile

Re: [us...@httpd] ssl certifikate mismatch

2010-05-16 Thread Eric Covener
My problem ist that SNI breaks my in older apaches working configuration which looked like this: Listen 10.137.1.104:9901 VirtualHost 10.137.1.104:9901  SSLEngine on  SSLCertificateFile /etc/apache2/conf/www.aaa.at.crt  SSLCertificateKeyFile /etc/apache2/conf/www.aaa.at.key  Include

Re: [us...@httpd] ssl certifikate mismatch

2010-05-16 Thread Reinhard Vicinus
What's the full apachectl -S look like on that config? VirtualHost configuration: 10.137.1.104:9903 is a NameVirtualHost default server www.aaa.de (/etc/apache2/sites-enabled/test:19) port 9903 namevhost www.aaa.de (/etc/apache2/sites-enabled/test:19)

Re: [us...@httpd] ssl certifikate mismatch

2010-05-16 Thread Eric Covener
Listen 10.137.1.104:9901 VirtualHost 10.137.1.104:9901 SSLEngine on SSLCertificateFile /etc/apache2/conf/www.aaa.at.crt SSLCertificateKeyFile /etc/apache2/conf/www.aaa.at.key Include conf/www.aaa.misc /VirtualHost Listen 10.137.1.104:9902 VirtualHost 10.137.1.104:9902 SSLEngine on

[us...@httpd] apache hanging whole system

2010-05-16 Thread Peter Halicky
Hi, I run a LAMP server with a few websites, one of them quite busy. I use Ubuntu 8.04 with apache 2.2.8 and PHP 5.2.4. The problem is this: about once a day, apache processes cause the system load to go very high (today it was ~30). During this time, I can not display any webpage on my server.

Re: [us...@httpd] apache hanging whole system

2010-05-16 Thread Morten Shearman Kirkegaard
Hi Peter, On Sun, 2010-05-16 at 22:42 +0200, Peter Halicky wrote: The problem is this: about once a day, apache processes cause the system load to go very high (today it was ~30). ... I configured a mod_status URL which I am monitoring, to see what is making apache so busy. Unfortunately,

Re: [us...@httpd] apache hanging whole system

2010-05-16 Thread Igor Cicimov
Sounds like you r running out of capacity. If the RAM is not an issue increase the MaxClients. Also run $ pgrep apache2 ¦ wc -l Or $ pgrep httpd ¦ wc -l to confirm you are reaching 80 Sent from my phone On May 17, 2010 6:43 AM, Peter Halicky p...@halicky.sk wrote: Hi, I run a LAMP server with

[us...@httpd] Struggle with Named Virtual Host - The Second Named Virtual Host Always Returns 404 File Not Found Error

2010-05-16 Thread Wang, Mary Y
Hi, I've been struggling with Apache 2 named virtual hosts for a while that I've defined in the httpd.conf. The second named virtual host never works, it always returns the 404 file not found error. The DocumentRoot I declared for the second named virtual is correct, because when I put that

RE: [us...@httpd] Struggle with Named Virtual Host - The Second Named Virtual HostAlways Returns 404 File Not Found Error

2010-05-16 Thread Wang, Mary Y
Oh.. apachectl -S shows it's a valid 80 namevhost. The virtual host name has already been registered as a DNS (alias). Just read another post about it, someone mentioned about adding the name to the /etc/hosts, and that didn't help either. Still searching for a solution... Mary

Re: [us...@httpd] Struggle with Named Virtual Host - The Second Named Virtual HostAlways Returns 404 File Not Found Error

2010-05-16 Thread Igor Cicimov
Post the relevant section of the config please so we can help you if you are missing something. Igor On Mon, May 17, 2010 at 12:38 PM, Wang, Mary Y mary.y.w...@boeing.comwrote: Oh.. apachectl -S shows it's a valid 80 namevhost. The virtual host name has already been registered as a DNS

RE: [us...@httpd] Struggle with Named Virtual Host - The Second Named Virtual HostAlways Returns 404 File Not Found Error

2010-05-16 Thread Wang, Mary Y
Here is the relevant section: NameVirtualHost 134.51.151.114:80 VirtualHost 134.51.151.114:80 ServerName devbrass2.ana.bna.boeing.com:80 DocumentRoot /usr/brass/www ServerAdmin mary.y.w...@boeing.commailto:mary.y.w...@boeing.com ErrorLog logs/error_log CustomLog logs/access_log combined LogLevel

Re: [us...@httpd] Struggle with Named Virtual Host - The Second Named Virtual HostAlways Returns 404 File Not Found Error

2010-05-16 Thread Tapas Mishra
NameVirtualHost 134.51.151.114:80 VirtualHost 134.51.151.114:80 ServerName devbrass2.ana.bna.boeing.com:80 ServerName is where apache2 listens to so do not add :80 It will respond to this ServerName when a request comes on 134.51.151.114 for devbrass2.ana.bna.boeing.com Otherwise you access the

Re: [us...@httpd] Struggle with Named Virtual Host - The Second Named Virtual HostAlways Returns 404 File Not Found Error

2010-05-16 Thread Igor Cicimov
Check the permissions for /home/project/tsim/htdocs Igor On Mon, May 17, 2010 at 2:16 PM, Tapas Mishra mightydre...@gmail.comwrote: NameVirtualHost 134.51.151.114:80 VirtualHost 134.51.151.114:80 ServerName devbrass2.ana.bna.boeing.com:80 ServerName is where apache2 listens to so do not