Red Hat Apache HTTPD错误

时间:2016-12-13 09:46:59

标签: apache redhat httpd.conf

设置新的测试服务器并配置HTTPD配置文件,如下所示:

NameVirtualHost *:443
Listen 443

# URL:y1.y3t.com
<VirtualHost *:443>
    ServerAdmin gis@y3t.com
    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>

但是,根据httpd error_log似乎存在一些错误。

错误讯息: -

[root@sgdc-pvl-web03 ~]# 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

任何人都可以建议我如何解决这个问题?我仍然是这方面的新手,非常感谢任何帮助!

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

error_log中的这一行只是&#34; notice&#34;而不是错误按摩

关于&#34; SSL FIPS模式的信息&#34;这是禁用(在最后一行)

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

您的网络界面是否正常工作?