Po ponownym uruchomieniu httpd pojawia się następujący błąd. czego mi brakuje?
[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
Zainstalowałem mod_ssl używając 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
Mój site.conf wygląda następująco
<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
chrześcijanin
źródło
źródło
mod_ssl
. W przypadku RHEL i CentOS odbywa się to za pomocąyum install mod_ssl
.sudo a2enmod ssl
W wielu systemach (Ubuntu, Suse, Debian, ...) uruchom następujące polecenie, aby włączyć mod SSL Apache:
Strona podręcznika a2enmod
źródło
a2enmod
jest specyficzny dla Debiana. Zarządza dowiązaniami symbolicznymi w sposób, w jaki Debian dzieli konfiguracje apache. Twoje polecenie jest równoważne zln -s /etc/apache2/mods-{available,enabled}/ssl.load; ln -s /etc/apache2/mods-{available,enabled}/ssl.conf
a2enmod
jest również używany na suse.Na CentOS 7 instalacja pakietu „mod_ssl” i ponowne uruchomienie serwera Apache działało dla mnie:
źródło
rozwiązanie httpd24:
źródło
Na Ubntu 18.04 bionic.
sudo a2enmod ssl; usługa sudo apache2 restart
źródło
sudo a2enmod ssl;
Może powinieneś dodać tam komentarz, aby zrestartować serwer po zmianie.