Date: Fri, 16 Aug 2002 09:56:35 +0100 From: Matthew Seaman <m.seaman@infracaninophile.co.uk> To: Lord Raiden <raiden23@netzero.net> Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Fun with Apache Message-ID: <20020816085635.GC13784@happy-idiot-talk.infracaninophi> In-Reply-To: <4.2.0.58.20020816015542.00965630@pop.netzero.net> References: <4.2.0.58.20020816015542.00965630@pop.netzero.net>
next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, Aug 16, 2002 at 02:00:31AM -0400, Lord Raiden wrote: > I've searched and found the wanted file at > "/usr/local/lib/compat/libc.so.3" > > Now, if that's the right file, why can't frontpage find the file?? > Do I need to register it or something? Thanks for the help. That file should be identical to the copy on your test machine. Try comparing the md5 checksums on the two machines: md5 libc.so.3 Use ldd(1) against the fpexe executable on both machines to see what shared objects it's loading (or trying to). My guess is that on the test machine, fpexe loads /usr/lib/compat/libc.so.3 or /usr/local/lib/compat/libc.so.3 but not on the server. If the command: ldconfig -r | grep libc.so.3 doesn't return any output, try: ldconfig -m /usr/local/lib/compat After that, recheck ldd(1) against fpexe --- everything should be resolved correctly. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way Tel: +44 1628 476614 Marlow Fax: +44 0870 0522645 Bucks., SL7 1TH UK To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020816085635.GC13784>