[SOLVED] YAML::XS, Not all prerequisites for this module

Moderator: crythias

Locked
JeroenB
Znuny newbie
Posts: 9
Joined: 12 Jul 2013, 17:00
Znuny Version: 3.2.8

[SOLVED] YAML::XS, Not all prerequisites for this module

Post by JeroenB »

When I run /opt/otrs/bin/otrs.CheckModules.pl I get the following message:

" o YAML::XS.........................FAILED! Not all prerequisites for this module correctly installed. "

ok, so I guess I just install YAML::XS then:

$ cpan YAML::XS
CPAN: Storable loaded ok (v2.39)
Reading '/home/user/.cpan/Metadata'
Database was generated on Mon, 16 Jun 2014 07:17:02 GMT
CPAN: Module::CoreList loaded ok (v2.76_02)
YAML::XS is up to date (0.41).

How can I find out which prerequisite is missing for this module? Thanks in advance!
Last edited by JeroenB on 16 Jun 2014, 17:10, edited 1 time in total.
marcosaurelio
Znuny expert
Posts: 185
Joined: 08 May 2014, 16:05
Znuny Version: 6.0.10
Real Name: Marcos Aurelio Silverio
Company: Infracerta
Location: Brazil
Contact:

Re: YAML::XS, Not all prerequisites for this module correctl

Post by marcosaurelio »

If you are using Linux(Ubuntu/Debian) try to install libyaml-perl package.

Code: Select all

apt-get install libyaml-perl
OTRS 6.0.10 Centos 7 Mysql 5.6
Videos de OTRS no Youtube: https://www.youtube.com/channel/UCscGon ... 7hADe3AalA
http://infracerta.com.br
JeroenB
Znuny newbie
Posts: 9
Joined: 12 Jul 2013, 17:00
Znuny Version: 3.2.8

Re: YAML::XS, Not all prerequisites for this module correctl

Post by JeroenB »

Hi Marco,

Thank you for your reaction, I'm running CentOS so I ended up doing:

Code: Select all

sudo yum install perl-YAML-LibYAML
to resolve this message and it worked! :D Thanks again
Locked