Protocol scheme 'https' is not supported (IO::Socket::SSL not installed)と出たので対処した

常時SSL化したのちに、cgiを動かしたら「Protocol scheme 'https' is not supported (IO::Socket::SSL not installed)」って感じのエラーが出た。

こういった場合は、yumでSSL関係のPerlモジュールをインストールしてやると解消する。
以下のとおりに。

sudo yum install perl-Net-SSLeay
sudo yum install perl-Crypt-SSLeay
sudo yum install perl-IO-Socket-SSL

以上