Recurring messages in HTTP SSL log

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
vmesquita
Posts: 315
Joined: Fri Aug 10, 2012 12:52 pm

Recurring messages in HTTP SSL log

Post by vmesquita »

I am gettting tons of messages like this on /var/log/http/ssl_error_log:
ssl_error_log.PNG
How can I fix this?
You do not have the required permissions to view the files attached to this post.
benjaminsmith
Posts: 5324
Joined: Wed Aug 22, 2018 4:39 pm
Location: saint paul

Re: Recurring messages in HTTP SSL log

Post by benjaminsmith »

Hi,

Those are php notices which are adversary messages and can be safely ignored. You can adjust the settings in the php.ini file to control the number of error messages.

For example, the following will turn off all messages:

Code: Select all

// Turn off all error reporting
error_reporting(0);
However, this can be adjusted. For example, the following will turn off just notices.

Code: Select all

error_reporting(E_ALL & ~E_NOTICE);
See: https://www.php.net/manual/en/function. ... orting.php

Hope that helps and let us know if you have any other questions

Benjamin
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.

Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked