spartacus9 has asked for the wisdom of the Perl Monks concerning the following question:

I have a Solaris box running Apache 1.3.26 that uses mod_auth_external to restrict access to certain directories. This module allows me to pass the username & password to an external program (hence the name) in order to authenticate the user. I have a large number of users and using regular htaccess password files is not practical.

My problem is this: I store my user accounts in MySql and want to use a Perl/DBI script as the password checker. However, when the perl program is invoked by the mod_auth_external module, it does not inherit the web server's environment variables. Without the LD_LIBRARY_PATH variable set to include "/usr/local/mysql/lib", the DBI connection fails every time because it cannot find the libmysqlclient.so files. I have tried setting the environment variable in my httpd.conf file and in the script itself like this:
$ENV{'LD_LIBRARY_PATH'} = '/usr/lib:/usr/local/lib:/usr/local/mysql/li +b';
but from what I understand you cannot change an environment variable after the script has been executed.

Does anyone know of a workaround for this? I would prefer to simply call a single perl program and not have to call one program to set an ENV variable, then call another to actually run the DBI:mysql call. Any suggestions would be very appreciated. Thanks.

Replies are listed 'Best First'.
Re: environment variable question
by Zaxo (Archbishop) on Sep 21, 2002 at 04:09 UTC

    I suspect that putting that in a BEGIN{} block before useing DBI will fix it. Otherwise, LD_LIBRARY_PATH is not set until runtime. That's too late for use.

    After Compline,
    Zaxo

Re: environment variable question
by tadman (Prior) on Sep 21, 2002 at 04:50 UTC
    If you have access to the configuration of the machine, you can do one of two things:
    • Soft-link in the libraries into an appropriate path location. Or copy them outright. Your call.
    • Try and mofify the dynamic loader config. Under Linux, this is /etc/ld.so.conf which is used by the ldconfig program.
    • Possibly, put the LD_LIBRARY_PATH setting in your apachectl script as an 'export', such as:
      export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib/mysql"
(tye)Re: environment variable question
by tye (Sage) on Sep 21, 2002 at 16:01 UTC