PDA

View Full Version : Odd experience



l0rdphi1
02-09-2004, 11:07 PM
Apache died a fiery death due to
[root@server1 root]# apachectl start
Syntax error on line 15 of /etc/httpd/conf/ips.conf:
Invalid command 'SSLEngine', perhaps mis-spelled or defined by a module not included in the server configuration
/usr/sbin/apachectl start: httpd could not be started

Reuploaded httpd.conf and it was fixed... guess something screwed httpd.conf over?

UltimeWWW
02-10-2004, 06:01 AM
John doesn't want us to start Apache with that :D

service httpd start only ;)

l0rdphi1
02-10-2004, 09:39 AM
Well, *that* would not even tell me why it wasn't starting. :rolleyes:

ProWebUK
02-10-2004, 09:42 AM
apachetl doesnt include the parts required for SSL, therefore you get the ssl errors.

service httpd stop
service httpd start
service httpd status

Output on the last 2 please :)

Chris

l0rdphi1
02-10-2004, 09:46 AM
Well, it's fixed now (see first post), but service httpd start was just complaining about SSLSomething not being implemented. Bah..

DirectAdmin Support
02-10-2004, 10:09 AM
I'd say start from scratch..

rm -f configure.*
./build clean
./build update
./build all

John

UltimeWWW
02-10-2004, 10:34 AM
Originally posted by l0rdphi1
Well, it's fixed now (see first post), but service httpd start was just complaining about SSLSomething not being implemented. Bah..

That is normal :)

l0rdphi1
02-10-2004, 11:22 AM
If this is normal, why was it a fatal error?

DirectAdmin Support
02-11-2004, 10:29 AM
Hello,

When you start up apache, the way it's compiled, it needs to have all of the modules included on the command line. If they arn't passed, then they arn't loaded, thus any configuration options that use them won't work and apache will quit. The commands I'm referring to are: the -DHAVE_SSL type options.

John