errors after ./build versions

bluebirdnet

Verified User
Joined
Feb 3, 2010
Messages
123
Location
Canada
Hi,

Since installing spamassassin i get these errors, so i guess some Perl modules not installed correctly?

what is best approach to fix this?

this is Centos server.

Latest version of Exim: 4.80.1
Installed version of Exim: 4.80.1

Mar 13 10:02:29.397 [22858] error: Socket version 1.95 required--this is only version 1.82 at /usr/local/share/perl5/IO/Socket/SSL.pm line 92.
Mar 13 10:02:29.397 [22858] error: Can't locate IO/Socket/IP.pm in @INC (@INC contains: /usr/share/perl5 /usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5) at /usr/local/share/perl5/IO/Socket/SSL.pm line 106.
Latest version of SpamAssassin: 3.3.2
Installed version of SpamAssassin: 3.3.2
 
Maybe try:

Code:
cpan -i IO::Socket::INET6

or

Code:
yum -y install perl-IO-Socket-INET6

or

Code:
cd /usr/local/src
wget http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/IO-Socket-IP-0.19.tar.gz
tar -xvfz IO-Socket-IP-0.19.tar.gz
cd IO-Socket-IP-0.19
perl Makefile.PL
make install
 
Last edited:
thanks Chatwizard.

ran cpan -i IO::Socket::INET6

CPAN: Storable loaded ok (v2.20)
Going to read '/root/.cpan/Metadata'
Database was generated on Wed, 13 Mar 2013 18:29:02 GMT
IO::Socket::INET6 is up to date (2.69).


but after build update and build versions i still get same errors.

i will keep searching.
 
Hello,

Recently faced the same issue we finished by upgrading of all Perl modules installed by CPAN, and of CPAN itself as well.
 
Hello,

Recently faced the same issue we finished by upgrading of all Perl modules installed by CPAN, and of CPAN itself as well.

Thanks Alex!

This did the trick for the missing IP.pm file.

cd /usr/local/src
wget http://search.cpan.org/CPAN/authors/id/P/PE/PEVANS/IO-Socket-IP-0.19.tar.gz
tar -xvfz IO-Socket-IP-0.19.tar.gz
cd IO-Socket-IP-0.19
perl Makefile.PL
make install


I also update all modules with:

Installed cpanminus

curl -L http://cpanmin.us | perl - App::cpanminus

then install cpanoutdated

cpanm App::cpanoutdated

then update all modules

cpan-outdated -p | cpanm
 
Back
Top