Wenn ich httpd neu starte, erhalte ich die folgende Fehlermeldung. Was vermisse ich?
[root@localhost ~]# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: Syntax error on line 22 of /etc/httpd/conf.d/sites.conf:
Invalid command 'SSLEngine', perhaps misspelled or defined by a module not included in the server configuration
Ich habe mod_ssl mit installiert yum install mod_ssl openssh
Package 1:mod_ssl-2.2.15-15.el6.centos.x86_64 already installed and latest version
Package openssh-5.3p1-70.el6_2.2.x86_64 already installed and latest version
Meine sites.conf sieht so aus
<VirtualHost *:80>
# ServerName shop.itmanx.com
ServerAdmin [email protected]
DocumentRoot /var/www/html/magento
<Directory /var/www/html>
Options -Indexes
AllowOverride All
</Directory>
ErrorLog logs/shop-error.log
CustomLog logs/shop-access.log
</VirtualHost>
<VirtualHost *:443>
ServerName secure.itmanx.com
ServerAdmin [email protected]
SSLEngine on
SSLCertificateFile /etc/httpd/ssl/secure.itmanx.com/server.crt
SSLCertificateKeyFile /etc/httpd/ssl/secure.itmanx.com/server.key
SSLCertificateChainFile /etc/httpd/ssl/secure.itmanx.com/chain.crt
DocumentRoot /var/www/html/magento
<Directory /var/www/html>
Options -Indexes
AllowOverride All
</Directory>
ErrorLog logs/shop-ssl-error.log
CustomLog logs/shop-ssl-access.log
</VirtualHost>
ssl
apache-httpd
Christian
quelle
quelle
mod_ssl
. Bei RHEL und CentOS geschieht dies mityum install mod_ssl
.sudo a2enmod ssl
Auf vielen Systemen (Ubuntu, Suse, Debian, ...) führen Sie den folgenden Befehl aus, um den SSL-Mod von Apache zu aktivieren:
a2enmod man page
quelle
a2enmod
ist Debian-spezifisch. Es verwaltet Symlinks für die Art und Weise, wie Debian Apache-Konfigurationen aufteilt. Ihr Befehl entsprichtln -s /etc/apache2/mods-{available,enabled}/ssl.load; ln -s /etc/apache2/mods-{available,enabled}/ssl.conf
a2enmod
wird auch bei suse verwendet.Unter CentOS 7 funktionierte es für mich, das Paket "mod_ssl" zu installieren und den Apache-Server neu zu starten:
quelle
httpd24 lösung:
quelle
Auf Ubntu 18.04 bionic.
sudo a2enmod ssl; sudo service apache2 neu starten
quelle
sudo a2enmod ssl;
Möglicherweise sollten Sie dort einen Kommentar hinzufügen, um den Server nach der Änderung neu zu starten.