LWPにて、.pl から、httpにアクセスできる状態であっても、
httpsにアクセスしたら、下記のエラーが表示される場合。
LWP will support https URLs if either Crypt::SSLeay or IO::Socket::SSL
is installed. More information at
<http://search.cpan.org/dist/libwww-perl/README.SSL>.
この場合は、下記を実施すればよい。
まずrootになる。
perl -MCPAN -e shell
install Crypt::SSLeay
install IO::Socket::SSL
install LWP::Protocol::https
exit
yum install perl-Net-SSLeay
yum install perl-Crypt-SSLeay
yum install perl-IO-Socket-SSL
この状態で、.pl から https にアクセスすれば
コンテンツが取得できる。