modules in perl

Issues related to applications and software problems
Post Reply
xo)mora
Posts: 58
Joined: 2017/01/13 20:52:59

modules in perl

Post by xo)mora » 2019/02/14 19:39:39

Hi, I'm Perl programmer. So I have to use different Modules that I had been installed, for check the Perl modules Installed in Centos 7 I had to use the command #instmodsh and it showed the Perl modules installed. Nevertheless I had been migrate a Perl Web Application to one Centos 7 server to another Centos 7 server and the Web application was executed ok. But I executed #instmodsh and the modules are different between one server and other server.

For example the Module DBI is not listed in the new server when I had been used the command instmodsh, nevertheless then I executed the command: # perl -e 'use DBI' and perl reported that the module DBI is installed, please, will you explain me because I don't understand it.

Thank you.

User avatar
TrevorH
Site Admin
Posts: 33202
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: modules in perl

Post by TrevorH » 2019/02/14 19:55:38

You should almost certainly be using packages to provide whatever you need, not doing source installs.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

xo)mora
Posts: 58
Joined: 2017/01/13 20:52:59

Re: modules in perl

Post by xo)mora » 2019/02/14 20:35:56

TrevorH wrote:
2019/02/14 19:55:38
You should almost certainly be using packages to provide whatever you need, not doing source installs.
Ok. thank you.

Post Reply