Server Check email Shows Error

Post Reply
lshnyc
Junior Member
Posts: 1
Joined: 14 Jul 2014, 23:00

Server Check email Shows Error

Post by lshnyc »

At the end of the email there is this code:

open3: exec of /usr/bin/openssl ciphers -v ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP failed at /usr/local/csf/bin/servercheck.pm line 1081
ForumAdmin
Moderator
Posts: 1524
Joined: 01 Oct 2008, 09:24

Re: Server Check email Shows Error

Post by ForumAdmin »

That's an issue with openssl and the SSL options you have configured. Specifically the !ADH checking fails. You can confirm this by running from the root shell the command, i.e.:

Code: Select all

/usr/bin/openssl ciphers -v ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP
Then try:

Code: Select all

/usr/bin/openssl ciphers -v ALL:-ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP
Post Reply