Perl Modules on Our Servers
Our servers come with a wide range of Perl modules pre-installed from CPAN. Common modules used by web applications, including DBI, CGI, LWP, Net::SMTP, MIME::Lite, and many others, are available by default.
Checking Installed Modules
If you have SSH access, you can list installed modules by running:
perl -MModule::Name -e 'print "Installed
"'
Replace Module::Name with the module you are checking (e.g., perl -MDBI -e 'print "Installed
"').
Need a Module Installed?
If your script requires a Perl module that is not currently installed, open a support ticket with the module name and we will install it. We can add any CPAN module as long as it does not pose a security risk.
