perl操作MongoDB报错undefined symbol: HeUTF8解决方法
因为shell操作mongo比较麻烦,只好尝试使用perl操作mongo,perl需要操作mongodb必须先安装相应的驱动,大部分人使用cpan安装,个人觉得太麻烦,使用cpanm安装perl模块。
#cpanmMongoDB -->WorkingonMongoDB Fetchinghttp://www.cpan.org/authors/id/F/FR/FRIEDO/MongoDB-0.702.1.tar.gz...OK ConfiguringMongoDB-0.702.1...OK BuildingandtestingMongoDB-0.702.1...FAIL !InstallingMongoDBfailed.See/root/.cpanm/work/1376540233.15152/build.logfordetails.Retrywith--forcetoforceinstallit.
cpanm报错了,使用–force参数
#cpanmMongoDB--force -->WorkingonMongoDB Fetchinghttp://www.cpan.org/authors/id/F/FR/FRIEDO/MongoDB-0.702.1.tar.gz...OK ConfiguringMongoDB-0.702.1...OK BuildingandtestingMongoDB-0.702.1...FAIL !TestingMongoDB-0.702.1failedbutinstallingitanyway. SuccessfullyinstalledMongoDB-0.702.1(upgradedfrom0.702.0) 1distributioninstalle
看起来一切完好。测试脚本
脚本内容:
#cat/root/testMongo.pl #!/usr/bin/perl useMongoDB; my$connection=MongoDB::Connection->new(host=>'localhost',port=>27017);
运行:
#perl/root/testMongo.pl /usr/bin/perl:symbollookuperror:/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto/MongoDB/MongoDB.so:undefinedsymbol:HeUTF8
google查询“MongoDB.so:undefinedsymbol:HeUTF8”,只发现一篇相关文章.一群人讨论这个问题。其中一个人的解决方法如下:
#wgethttp://search.cpan.org/CPAN/authors/id/F/FR/FRIEDO/MongoDB-0.701.4.tar.gz #tar-xzvfMongoDB-0.701.4.tar.gz #cdMongoDB-0.701.4 添加如下内容到perl_mongo.h: /*supplyHeUTF8ifit'smissing-ppport.hdoesn'tsupplyit,unfortunately*/ #ifndefHeUTF8 #defineHeUTF8(he)((HeKLEN(he)==HEf_SVKEY)?\ SvUTF8(HeKEY_sv(he)):\ (U32)HeKUTF8(he)) #endif #perlMakefile.PL #make #makeinstall
perl脚本运行ok.
实际上是因为不兼容的问题,对于系统RHEL5/CENTOS5发行版,mongodb的perl驱动最后的一个版本是v0.45
如下是国外网友的回复:
Thelatestversiontocompile,testandinstallproperlyonRhel5/Centos5isv0.45byKRISTINA.(requiresAny::Moose)
https://metacpan.org/release/KRISTINA/MongoDB-0.45