When I try to create ssh keys on Fedora 8, the httpd service will stop and fail to restart. I had this problem on another machine also running Fedora 8 and finally got it going by reinstalling httpd several times before it accepted the entry and now works fine. The errors on the current machine is:
[ken@smbsrvr2 ~]$ su -
Password:
[root@smbsrvr2 ~]# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: Syntax error on line 320 of /etc/httpd/conf.d/system-config-httpd.conf:
Invalid command 'SSLEngine', perhaps misspelled or defined by a module not included in the server configuration
[FAILED]
[root@smbsrvr2 ~]#
Below is an excerpt from system-config-httpd.conf:
303 #
304 # Virtual hosts
305 #
306
307 # Virtual host Default Virtual Host
308 <VirtualHost *>
309 DocumentRoot /var/www/html/
310 ErrorLog logs/error_log
311 ServerAdmin root@localhost
312
313
314
315 ServerSignature email
316 TransferLog logs/access_log
317 DirectoryIndex index.php index.html index.htm index.shtml
318
319
320 SSLEngine on
321 SSLCertificateFile /etc/pki/tls/certs/smbsrvr2.crt
322 SSLCertificateKeyFile /etc/pki/tls/private/smbsrvr2.key
323
324 SSLCACertificateFile /etc/pki/tls/certs/ca-bundle.crt
325
326 SSLOptions StrictRequire
327
328 TransferLog logs/access_log
329 ErrorLog logs/error_log
330 LogLevel debug
331 HostNameLookups off
332
333
334
335
336 </VirtualHost>
I need to find out why this is happening and I am open to all input. -- ken