http://www.perlmonks.org?node_id=984369


in reply to Re^4: Protocol scheme 'http' is not supported
in thread Protocol scheme 'http' is not supported

Hi,

It does actually look like you have two perls installed.

Look at your whereis output, /usr/bin/perl vs /usr/local/bin/perl

You can verify this further by doing /usr/bin/perl -V and /usr/local/bin/perl -V

I had a similar problem after a release-upgrade on my ubuntu-server.
Unfortunately my only solution was to reinstall the system.

Best regards,
Jimmy
  • Comment on Re^5: Protocol scheme 'http' is not supported

Replies are listed 'Best First'.
Re^6: Protocol scheme 'http' is not supported
by ggerke (Novice) on Jul 30, 2012 at 16:54 UTC
    Actually, both the /usr/local/bin/perl and the /opt/admin/bin/perl are just softlinks to the actual /usr/bin/perl binary, but thanks for keepin' me honest

    $ ls -l /opt/admin/bin/perl /usr/local/bin/perl /usr/bin/perl lrwxrwxrwx 1 root root 13 Apr 10 16:38 /opt/admin/bin/perl -> /usr/ +bin/perl -rwxr-xr-x 2 root root 19208 Dec 16 2011 /usr/bin/perl lrwxrwxrwx 1 root root 13 Apr 27 14:01 /usr/local/bin/perl -> /usr/ +bin/perl