On Thu, Nov 01, 2001 at 03:21:19PM -0600, Willis, Brandon
wrote:> smbd will not run i get the following error:
>
> [2001/10/31 13:02:54, 0] smbd/server.c:(724)
> standard input is not a socket, assuming -D option
> [2001/10/31 13:02:54, 0] lib/util_sock.c:(820)
> bind failed on port 139 socket_addr=0.0.0.0 (Address already in use)
> [2001/10/31 16:38:24, 0] smbd/server.c:(724)
> standard input is not a socket, assuming -D option
> [2001/10/31 16:38:24, 0] lib/util_sock.c:(820)
> bind failed on port 139 socket_addr=0.0.0.0 (Address already in use)
>
It sounds like you may have another copy of smbd running, which is binding
the socket.
ps ax | grep smbd
might show something.
netstat -an | grep 139
might also be useful.
Joel