Re: [EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-31 Thread Vinay Y S
On 12/29/06, Shweta Patel <[EMAIL PROTECTED]> wrote: After building and installing when I try to test: /home/sp/proj/bin/apachectl start I get error: Syntax error on line 117 of /etc/httpd/conf.d/ssl.conf: apachectl might be the culprit here. A couple of things you can do: Go thru the /home

Re: [EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-29 Thread Sander Temme
Shweta, On Dec 29, 2006, at 7:35 AM, Shweta Patel wrote: ./configure --prefix=/home/sp/proj/ --exec-prefix=/home/sp/proj/ -- with-port=8080 --enable-so --disable-ssl After building and installing when I try to test: /home/sp/proj/bin/ apachectl start I get error: Syntax error on line 117 o

Re: [EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-29 Thread Aplus Dedicated Support, Jarrod Overson
There might be no reference to any ssl.conf in the httpd.conf, it may be that the whole conf.d directory is included with something like Include /path/to/conf.d/*.conf Serge Dubrouski wrote: Look into your httpd.conf file. 1. You can have Include ssl.conf or conf/extra/httpd_ssl.conf or some

Re: [EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-29 Thread Serge Dubrouski
Look into your httpd.conf file. 1. You can have Include ssl.conf or conf/extra/httpd_ssl.conf or some other name (some Linux distros repackage config file) 2. Nothing prevent an admin from putting SSL config into httpd.conf directly in any case READ YOUR HTTPD.CONF file. apachectl is just a si

Re: [EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-29 Thread Shweta Patel
That because in 2.2.3 it's extra/httpd_ssl.conf 1. In that case why is the server even looking into the file /etc/httpd/conf.d/ssl.conf ? 2. When or where in the Server code does it look for ssl.conf ? Basically I'm looking for the initial steps that occur once we call apachectl start Thanks a

Re: [EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-29 Thread Serge Dubrouski
That because in 2.2.3 it's extra/httpd_ssl.conf On 12/29/06, Shweta Patel <[EMAIL PROTECTED]> wrote: I do not have the permissions to do so and hence was looking for alternatives. I greped the source for httpd.2.2.3 but could not find an explicit reference to the path "/etc/httpd/conf.d/ssl.con

Re: [EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-29 Thread Shweta Patel
I do not have the permissions to do so and hence was looking for alternatives. I greped the source for httpd.2.2.3 but could not find an explicit reference to the path "/etc/httpd/conf.d/ssl.conf" and was wondering how the server picks up this path since I'm not starting it with ssl support and h

Re: [EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-29 Thread Davide Bianchi
Shweta Patel wrote: Syntax error on line 117 of /etc/httpd/conf.d/ssl.conf: SSLCertificateFile: file '/etc/httpd/conf/ssl.crt/server.crt' does not exist or is empty Is there a way for me to solve the problem without switching to as root user? Sure, edit the httpd.conf file and remove the "i

[EMAIL PROTECTED] Apache 2.2.3 installation not as root

2006-12-29 Thread Shweta Patel
Hi, I'm trying to install Apache 2 (httpd.2.2.3) with the following configuration on Linux: ./configure --prefix=/home/sp/proj/ --exec-prefix=/home/sp/proj/ --with-port=8080 --enable-so --disable-ssl After building and installing when I try to test: /home/sp/proj/bin/apachectl start I get erro