problem on fresh freebsd 6.4 install

DA-Rff

Verified User
Joined
Dec 4, 2006
Messages
119
today installed da on a freebsd 6.4 during install of DA I chose the custombuild option.

PHP was not installed, dovecot is not installed.

I ran ./build all d but no dovecot, no php

I then ran ./build php and the install seems to halt on this:
/libexec/ld-elf.so.1: Shared object "libintl.so.8" not found, required by "gmake"

I fixed this by: #ln -s libintl.so.6 libintl.so.8
But why would that be necessary?

I also ran ./build dovecot, and got this
Starting dovecot: [ OK ]
Fatal: listen(0.0.0.0, 110) failed: Address already in use
ls: /usr/local/awstats: No such file or directory


Anybody ideas?

thanks

Oliver
 
Last edited:
I have the same problem, does anyone have the solution?
regards
 
rik,

I had an email conversation with John from DA, that helped me get the solution.

I will see if I can get the headlines out of that so you can try and see if you can solve it as well.
First of all try this:

What's the output from:

dovecot --version

(to see if it's compiled)

The following error means something is already bound to port 110:

Fatal: listen(0.0.0.0, 110) failed: Address already in use

therefore also:
type:

ps -ax | grep pop

to see if any pop programs (like vm-pop3d) are bound to 110.
Also check /etc/inetd.conf for any pop3 entries... there should not be any (lines with # at the start don't count)

In my case I had a vm-pop3d running and therefore I was advised to do the following:
type:
/usr/local/etc/rc.d/vm-pop3d stop
chmod 0 /usr/local/etc/rc.d/vm-pop3d

Which I did and then dovecot started.

good luck!
 
Last edited:
Back
Top