Previous Thread
Next Thread
Print Thread
libpcre on RHEL5 #10720 15 Jul 09 11:47 PM
Joined: Jan 2003
Posts: 133
D
Dominic - Madics Systems Ltd Offline OP
Member
OP Offline
Member
D
Joined: Jan 2003
Posts: 133
I am getting:

-bash-3.1$ ashell -n
ashell: error while loading shared libraries: libpcre.so.0: cannot open shared object file: No such file or directory

pcre is installed, I also installed pcre-devel. Both version 6.6

Anyone had to fix this up to now?

Re: libpcre on RHEL5 #10721 16 Jul 09 02:40 AM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Unfortunately I'm on the road making it difficult to dig into this right now, but two possibilities that come to mind are: libpcre.so.0 isn't in the library path, or the version of pcre you have is too different from the one I used for the compil. Let's have a look at your libpcre.so links...

Re: libpcre on RHEL5 #10722 16 Jul 09 03:09 AM
Joined: Jan 2003
Posts: 133
D
Dominic - Madics Systems Ltd Offline OP
Member
OP Offline
Member
D
Joined: Jan 2003
Posts: 133
libpcre.so.0 is at /lib64/libpcre.so.0

Also, there is a script in the user rc scripts that sets LD_LIBRARY_PATH to some /opt software path (this is an HP server)

I have noticed that on the Dell servers we have had preiviously, it is located at /lib and /lib64

Is this of any help?

Re: libpcre on RHEL5 #10723 16 Jul 09 03:16 AM
Joined: Jan 2003
Posts: 133
D
Dominic - Madics Systems Ltd Offline OP
Member
OP Offline
Member
D
Joined: Jan 2003
Posts: 133
Maybe the startup function it is a problem.

Why LD_LIBRARY_PATH is bad:
http://xahlee.org/UnixResource_dir/_/ldpath.html

Re: libpcre on RHEL5 #10724 17 Jul 09 03:14 AM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
Sorry for the delay here - I've been on the move continuously for the last few days. Here's what I should have recommended earlier. Start by using ldd to display the library dependencies of ashell:

Code
[root@centos bin]# ldd ashell
        libm.so.6 => /lib/tls/libm.so.6 (0x003e2000)
        libncurses.so.5 => /usr/lib/libncurses.so.5 (0x0589f000)
        libpcre.so.0 => /lib/libpcre.so.0 (0x00407000)
        libdl.so.2 => /lib/libdl.so.2 (0x003dc000)
        libc.so.6 => /lib/tls/libc.so.6 (0x002af000)
        /lib/ld-linux.so.2 (0x00291000)
  
I suspect that on your system, you will instead see some kind of "not found" message for the libpcre entry.

Next, check the system shared library path:

Code
[root@centos bin]# cat /etc/ld.so.conf
include ld.so.conf.d/*.conf
/usr/ofed/lib
/usr/local/lib
(You may need to drill down to see the include'd files if applicable.)

Then, assuming nothing points to /lib64, despite the arguments of the well-written article you referenced in your post, as a temporary test go ahead and export LD_LIBRARY_PATH=/lib64 and see if A-Shell will now load.

It may well be that the 64 bit version isn't compatible, but I suspect you'll get a different error message than file not found. If so, then you can download a tar\'d copy of the libpcre.so.0.0.1 version 7.4 here ; I suggest dropping it into /lib, which is presumably part of your system default library path.

You want to end up with libpcre.so.0 linked to libpcre.so.0.0.1

Re: libpcre on RHEL5 #10725 29 Mar 10 01:21 AM
A
Anonymous
Unregistered
Anonymous
Unregistered
A
If running CentOS 5.4 64-bit, you need to install pcre i386.

Re: libpcre on RHEL5 #10726 24 Sep 10 05:52 AM
Joined: Dec 2007
Posts: 48
J
Jason Maxwell Offline
Member
Offline
Member
J
Joined: Dec 2007
Posts: 48
thank you for sharing this information. I found that simply using yum to install [pcre.i386] resolved the issue for me. the tar file that is on the distribution page that includes a file [libpcre.so.0.0.1] does not work. i got an error something about wrong 64bit version.


Moderated by  Jack McGregor, Ty Griffin 

Powered by UBB.threads™ PHP Forum Software 7.7.3