2016-12-13 4 views
-1

Have Setup einen neuen Test-Server und konfigurieren HTTPD conf Datei per unten:Red Hat Apache HTTPD Fehler

NameVirtualHost *:443 
Listen 443 

# URL:y1.y3t.com 
<VirtualHost *:443> 
    ServerAdmin [email protected] 
    ServerName y1.y3t.com 
    ServerAlias y1.y3t.com 
    ProxyTimeout 2700 
    Timeout 2700 

     SSLEngine on 
# SSLProtocol -SSLv2 
    SSLProtocol all -SSLv2 
    SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW 

    SSLCertificateFile /home/ssl/y3t.com.crt 
    SSLCertificateKeyFile /home/ssl/y3t.com.key 
    SSLCertificateChainFile /home/ssl/intermediate.crt 

    ProxyPass/http://10.0.0.2/ 
    ProxyPassReverse/http://10.0.0.2/ 

    ErrorLog /appl/httpd/logs/y1.y3t.com-error_log 
    CustomLog /appl/httpd/logs/y1.y3t.com-access_log common 
</VirtualHost> 

Allerdings scheint es einige Fehler nach dem httpd error_log zu sein.

Fehlermeldung: -

[[email protected] ~]# tail -f /var/log/httpd/error_log 
[Tue Dec 13 16:22:47 2016] [notice] Digest: generating secret for digest authentication ... 
[Tue Dec 13 16:22:47 2016] [notice] Digest: done 
[Tue Dec 13 16:22:47 2016] [notice] mod_python: Creating 4 session mutexes based on 256 max processes and 0 max threads. 
[Tue Dec 13 16:22:47 2016] [notice] SSL FIPS mode disabled 
[Tue Dec 13 16:22:47 2016] [notice] Apache/2.2.3 (Red Hat) configured -- resuming normal operations 
[Tue Dec 13 16:27:21 2016] [notice] caught SIGTERM, shutting down 
[Tue Dec 13 16:27:22 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) 
[Tue Dec 13 16:27:22 2016] [notice] SSL FIPS mode disabled 
[Tue Dec 13 16:31:13 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) 
[Tue Dec 13 16:31:13 2016] [notice] SSL FIPS mode disabled 
[Tue Dec 13 16:32:14 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec) 
[Tue Dec 13 16:32:14 2016] [notice] SSL FIPS mode disabled 

Kann jemand beraten, wie kann ich dieses Problem lösen? Ich bin immer noch ein Neuling auf diesem, schätze wirklich jede Hilfe gegeben!

Danke für Ihre Hilfe!

+0

Es gibt keine Fehler dort, das sind deutlich "notice" Nachrichten. Kannst du nicht sehen? –

Antwort

1

diese Linien in error_log ist nur "Bekanntmachung" und sind nicht Fehler Massagen

wie die informasion über "SSL FIPS-Modus", die zu deaktivieren ist (in letzter Zeile)

[Tue Dec 13 16:32:14 2016] [notice] SSL FIPS mode disabled 

ist Ihr Web-Interface richtig arbeiten?