On 23/07/2020 18:12, James B. Byrne via samba wrote:> > On Thu, July 23, 2020 16:16:30, Mani Wieser wrote: > >>>> ../../source4/nbt_server/interfaces.c:228(nbtd_add_socket) >>>> Failed to bind to 127.0.162.1:137 - NT_STATUS_ADDRESS_ALREADY_ASSOCIATED >> check where has port 137 occupied > There is nothing listening on 137 > > [root at smb4-2 ~ (master)]# netstat -an | grep -i listen > tcp4 0 0 192.168.18.162.22 *.* LISTEN > tcp4 0 0 192.168.216.162.22 *.* LISTEN > tcp4 0 0 *.10000 *.* LISTENTry it like this: netstat -an | grep -i LISTEN | grep nmb Rowland
On Thu, Jul 23, 2020 at 06:31:09PM +0100, Rowland penny via samba wrote:> On 23/07/2020 18:12, James B. Byrne via samba wrote: > > > > On Thu, July 23, 2020 16:16:30, Mani Wieser wrote: > > > > > > > ../../source4/nbt_server/interfaces.c:228(nbtd_add_socket) > > > > > Failed to bind to 127.0.162.1:137 - NT_STATUS_ADDRESS_ALREADY_ASSOCIATED > > > check where has port 137 occupied > > There is nothing listening on 137 > > > > [root at smb4-2 ~ (master)]# netstat -an | grep -i listen > > tcp4 0 0 192.168.18.162.22 *.* LISTEN > > tcp4 0 0 192.168.216.162.22 *.* LISTEN > > tcp4 0 0 *.10000 *.* LISTEN > > Try it like this: > > netstat -an | grep -i LISTEN | grep nmbThe samba binary has an nbt server turned on by default. It has a different functionality set than nmbd.
On 23/07/2020 18:36, Jeremy Allison wrote:> On Thu, Jul 23, 2020 at 06:31:09PM +0100, Rowland penny via samba wrote: >> On 23/07/2020 18:12, James B. Byrne via samba wrote: >>> On Thu, July 23, 2020 16:16:30, Mani Wieser wrote: >>> >>>>>> ../../source4/nbt_server/interfaces.c:228(nbtd_add_socket) >>>>>> Failed to bind to 127.0.162.1:137 - NT_STATUS_ADDRESS_ALREADY_ASSOCIATED >>>> check where has port 137 occupied >>> There is nothing listening on 137 >>> >>> [root at smb4-2 ~ (master)]# netstat -an | grep -i listen >>> tcp4 0 0 192.168.18.162.22 *.* LISTEN >>> tcp4 0 0 192.168.216.162.22 *.* LISTEN >>> tcp4 0 0 *.10000 *.* LISTEN >> Try it like this: >> >> netstat -an | grep -i LISTEN | grep nmb > The samba binary has an nbt server turned on > by default. It has a different functionality > set than nmbd.Yes, I know that ;-) I was just trying to make sure that nmbd hadn't somehow got started first, after all, the both use port 137 Rowland