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


in reply to Re: Vendor program can't load *.so file after OS patching
in thread Vendor program can't load *.so file after OS patching

Hello and thanks for the feedback.
Perl wasn't updated as part of the OS patching.
I'm told the vendor has their own copy of perl bundled within the app that it uses as shown here.
# /home/test/perl5/perls/perl-5.22.0/bin/perl -v
This is perl 5, version 22, subversion 0 (v5.22.0) built for x86_64-linux-thread-multi (with 1 registered patch, see perl -V for more detail)
Copyright 1987-2015, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on this system using "man perl" or "perldoc perl". If you have access to the Internet, point your browser at http://www.perl.org/, the Perl Home Page.


I did check the libraries used by the shared object mentioned in the error as listed here.
# ldd -v /home/test/lib/aarch4p.so linux-vdso.so.1 => (0x00007ffc58b57000)
libatech.so => not found
libaarch.so => not found
libpwlab.so => not found
libsdb.so => not found
libc.so.6 => /lib64/libc.so.6 (0x00007fd13bcb6000)
/lib64/ld-linux-x86-64.so.2 (0x000055e49d9fc000)

Version information:
/home/test/lib/aarch4p.so:
libc.so.6 (GLIBC_2.4) => /lib64/libc.so.6
libc.so.6 (GLIBC_2.2.5) => /lib64/libc.so.6
/lib64/libc.so.6:
ld-linux-x86-64.so.2 (GLIBC_PRIVATE) => /lib64/ld-linux-x86-64.so.2
ld-linux-x86-64.so.2 (GLIBC_2.3) => /lib64/ld-linux-x86-64.so.2

Those are part of the glibc-2.12-1.212.el6_10.3.x86_64 package that was updated as part of the OS patching.
I beginning to think the /home/test/lib/aarch4p.so, or another app specific shared object, is having issues with the latest glibc package.
Not sure what else to look at.
I'm guessing we'll have to follow up with the vendor since still they technically support this app.
Thanks again for replying and let me know if you have any other thoughts on it.
  • Comment on Re^2: Vendor program can't load *.so file after OS patching