2012-04-03 135 views
0

我在使用生產中的modperl設置(在AIX 5.3上)下使用XML :: Parser時遇到問題。它工作正常,在發展的同時,出現以下錯誤失敗生產:嘗試在modperl2下使用XML :: Parser時出錯 - 無法加載模塊

[Tue Apr 03 08:44:03 2012] [error] Can't load '/wload/es1p/app/perl/lib/site_perl/5.10.1/aix/auto/XML/Parser/Expat/Expat.so' for mo 
ule XML::Parser::Expat: Could not load module /wload/es1p/app/perl/lib/site_perl/5.10.1/aix/auto/XML/Parser/Expat/Expat.so.\n\tDepe 
dent module /wload/es1p/app/usr/local/apache2/lib/libexpat.a(libexpat.so.1) could not be loaded.\n\tMember libexpat.so.1 is not fou 
d in archive \nCould not load module /wload/es1p/app/perl/lib/site_perl/5.10.1/aix/auto/XML/Parser/Expat/Expat.so.\n\tDependent mod 
le /wload/es1p/app/perl/lib/site_perl/5.10.1/aix/auto/XML/Parser/Expat/Expat.so could not be loaded. at /wload/es1p/app/perl/lib/5. 
0.1/aix/DynaLoader.pm line 200.\n at /wload/es1p/app/perl/lib/site_perl/5.10.1/aix/XML/Parser.pm line 18\nCompilation failed in req 
ire at /wload/es1p/app/perl/lib/site_perl/5.10.1/aix/XML/Parser.pm line 18.\nBEGIN failed--compilation aborted at /wload/es1p/app/p 
rl/lib/site_perl/5.10.1/aix/XML/Parser.pm line 22.\nCompilation failed in require at /wload/es1p/app/perl/lib/site_perl/5.10.1/XML/ 
Path/XMLParser.pm line 7.\nBEGIN failed--compilation aborted at /wload/es1p/app/perl/lib/site_perl/5.10.1/XML/XPath/XMLParser.pm li 
e 7.\nCompilation failed in require at /wload/es1p/app/perl/lib/site_perl/5.10.1/XML/XPath.pm line 13.\nBEGIN failed--compilation a 
orted at /wload/es1p/app/perl/lib/site_perl/5.10.1/XML/XPath.pm line 13.\nCompilation failed in require at /wload/es1p/app/perl/lib 
site_perl/5.10.1/Net/SAML2/IdP.pm line 23.\nBEGIN failed--compilation aborted at /wload/es1p/app/perl/lib/site_perl/5.10.1/Net/SAML 
/IdP.pm line 23.\nCompilation failed in require at /wload/es1p/app/perl/lib/site_perl/5.10.1/Net/SAML2.pm line 69.\nBEGIN failed--c 
mpilation aborted at /wload/es1p/app/perl/lib/site_perl/5.10.1/Net/SAML2.pm line 69.\nCompilation failed in require at /wload/es1p/ 
pp/usr/local/apache2/perl-bin/sso.pl line 4.\nBEGIN failed--compilation aborted at /wload/es1p/app/usr/local/apache2/perl-bin/sso.pl 

的外籍/外籍-devel的庫使用一個包(同一個在開發和生活)安裝到/opt/freeware/lib並都表現出相同的輸出從ldd Expat.so

Expat.so needs: 
    /usr/lib/libc.a(shr.o) 
    /opt/freeware/lib/libexpat.a(libexpat.so.1) 
    /unix 
    /usr/lib/libcrypt.a(shr.o) 

我都試過在我們的點文件,並在我們的mod_env配置,但沒有運氣設置LIBPATH。我不希望有人知道確切的答案,但我已經沒有想法,我可以嘗試,所以我希望有一些建議嘗試。

編輯:我還應該指出,使用XML :: Parser的相同腳本完全可以像我們的在線服務器上的普通cgi-bin腳本一樣工作。

回答

0

一個想法:也許有兩個不同的XML :: Parser安裝在您的prod服務器上。你的CGI選擇一個,你的腳本選擇另一個?

從腳本(在prod和dev)和從您的工作CGI打印出@INC並比較結果。

關於,