2019-09-20 - hschneider, Admin
Cookie Disclaimer: This forum uses only essential, anonymous session cookies (xmailforum*), nothing to be scared of.
XMail Forum · Newbies read here ! All about SMTP,MX-Records,DNS etc. | Help Search Members Calendar |
Welcome Guest ( Log In | Register ) | Resend Validation Email |
royblack |
Posted: Apr 17 2004, 02:13 AM
|
Junior Member Group: Members Posts: 27 Member No.: 1031 Joined: 11-April 04 |
Hi,
I have a running XMail server on FreeBSD 5.2 and now installing XQA 1.40 on it. As instructed in INSTALL.txt the following actions were made: - Login as root - Unpack the archive and copy the Agent's directory to /usr/local. - Modify xqmagent.conf and move xqmagent.conf to /etc - Create symbolic links: ln -s /usr/lib/libssl.so.3 /lib/libssl.so.0.9.6 ln -s /lib/libcrypto.so.3 /lib/libcrypto.so.0.9.6 After that when start XQA with ./xqmagent I get this error: --------------- $ ./xqmagent /usr/libexec/ld-elf.so.1: Shared object "libc_r.so.4" not found --------------- I guess some thing missing here. Need help to fix this. Please post if you know how. Thanks. |
hschneider |
Posted: Apr 18 2004, 10:38 AM
|
No - I'm not an answering script ... Group: Admin Posts: 6631 Member No.: 195 Joined: 19-June 02 |
libc_r.so.4 is the re-entrant version of the standard system C library.
If you're on version 5.x of BSD, there might be a version 4 compatibility package which will allow you to run this. I'll install FreeBSD 5.2 during next week to check things out in parallel. -------------------- Bye,
Harald -- Download XMail Queue Manager 1.46 NOW: XMail Server Tools -- Cross platform remote queue management! -- Message analyzing on the fly! -- Builtin diagnostics knowledge base! -- Manages multiple mail queues! Sponsored by CD-Produktion und DVD-Produktion and Homestaging Saarland - Immobilien schneller verkaufen in der Region Saarland, Rheinland-Pfalz und Luxembourg |
hschneider |
Posted: Apr 20 2004, 10:26 AM
|
No - I'm not an answering script ... Group: Admin Posts: 6631 Member No.: 195 Joined: 19-June 02 |
I installed FreeBSD 5.1 and had a closer look on it.
Like expected, you have to install the FreeBSD 4.6 compatibility layer: CD1/misc/compat4x-XXX-5.0.XXXXXX -------------------- Bye,
Harald -- Download XMail Queue Manager 1.46 NOW: XMail Server Tools -- Cross platform remote queue management! -- Message analyzing on the fly! -- Builtin diagnostics knowledge base! -- Manages multiple mail queues! Sponsored by CD-Produktion und DVD-Produktion and Homestaging Saarland - Immobilien schneller verkaufen in der Region Saarland, Rheinland-Pfalz und Luxembourg |
hschneider |
Posted: Apr 20 2004, 10:55 AM
|
||
No - I'm not an answering script ... Group: Admin Posts: 6631 Member No.: 195 Joined: 19-June 02 |
After that, you will eventually run into this:
Solution: This seems to be a bug of the FreeBSD 5 development branch. Here its fix: cd /lib ln -s libutil.so.4 libutil.so.3 Would be nice to have some feedback, if all things run stable on FreeBSD 5.x ... -------------------- Bye,
Harald -- Download XMail Queue Manager 1.46 NOW: XMail Server Tools -- Cross platform remote queue management! -- Message analyzing on the fly! -- Builtin diagnostics knowledge base! -- Manages multiple mail queues! Sponsored by CD-Produktion und DVD-Produktion and Homestaging Saarland - Immobilien schneller verkaufen in der Region Saarland, Rheinland-Pfalz und Luxembourg |
||
royblack |
Posted: Apr 24 2004, 03:10 AM
|
Junior Member Group: Members Posts: 27 Member No.: 1031 Joined: 11-April 04 |
I found out what's wrong.
In FreeBSD some required libs are named a bit different, for example libutil.so.3 is required but in FreeBSD it named as libutil.so.4 I created a symlink like this ln -s /usr/lib/libutil.so.3 /usr/lib/libutil.so.4 and it fixes. As now I'm testing and learning how it works so cann't post how stable on FreeBSD 5.2 is it. I hope to do it later. Thanks |