LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   Samba does not start first time on boot (https://www.linuxquestions.org/questions/linux-networking-3/samba-does-not-start-first-time-on-boot-4175599987/)

ted_chou12 02-17-2017 09:14 AM

Samba does not start first time on boot
 
Hi, my samba does not start up first time on boot, but after the boot is complete. I can start it successfully. I have pasted the log:
Code:

[2017/02/17 23:46:05.399083,  0] ../lib/util/pidfile.c:153(pidfile_unlink)
  Failed to delete pidfile /var/run/smbd.pid. Error was No such file or directory
[2017/02/17 23:47:25.463572,  0] param/loadparm.c:3154(lp_do_parameter)
  Global parameter guest account found in service section!
[2017/02/17 23:47:26.888768,  0] printing/print_cups.c:151(cups_connect)
  Unable to connect to CUPS server localhost:631 - Network is unreachable
[2017/02/17 23:47:26.889437,  0] printing/print_cups.c:528(cups_async_callback)
  failed to retrieve printer list: NT_STATUS_UNSUCCESSFUL
[2017/02/17 23:47:40.241269,  0] ../lib/util/pidfile.c:153(pidfile_unlink)
  Failed to delete pidfile /var/run/smbd.pid. Error was No such file or directory
[2017/02/17 23:47:42.362524,  0] param/loadparm.c:3154(lp_do_parameter)
  Global parameter guest account found in service section!
[2017/02/17 23:47:42.436920,  0] lib/util_sock.c:485(open_socket_in)
  bind failed on port 445 socket_addr = 192.168.1.12.
  Error = Cannot assign requested address
[2017/02/17 23:47:42.438173,  0] smbd/server.c:684(smbd_open_one_socket)
  smbd_open_once_socket: open_socket_in: Cannot assign requested address
[2017/02/17 23:47:42.451843,  0] lib/util_sock.c:485(open_socket_in)
  bind failed on port 139 socket_addr = 192.168.1.12.
  Error = Cannot assign requested address
[2017/02/17 23:47:42.454132,  0] smbd/server.c:684(smbd_open_one_socket)
  smbd_open_once_socket: open_socket_in: Cannot assign requested address
[2017/02/17 23:47:42.455948,  0] smbd/server.c:848(open_sockets_smbd)
  open_sockets_smbd: No sockets available to bind to.
[2017/02/17 23:47:42.456772,  0] smbd/server_exit.c:205(exit_server_common)
  ===============================================================
[2017/02/17 23:47:42.461315,  0] smbd/server_exit.c:207(exit_server_common)
  Abnormal server exit: open_sockets_smbd() failed
[2017/02/17 23:47:42.463734,  0] smbd/server_exit.c:208(exit_server_common)
  ===============================================================
[2017/02/17 23:47:42.471132,  0] lib/util.c:921(log_stack_trace)

and the configuration file:
Code:

# This is the main Samba configuration file. You should read the                     
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options (perhaps too
# many!) most of which are not shown in this example
#
# For a step to step guide on installing, configuring and using samba,
# read the Samba HOWTO Collection.
#
# Any line which starts with a ; (semi-colon) or a # (hash)
# is a comment and is ignored. In this example we will use a #
# for commentry and a ; for parts of the config file that you
# may wish to enable
#
# NOTE: Whenever you modify this file you should run the command "testparm"
# to check that you have not made any basic syntactic errors.
#
#======================= Global Settings =====================================
[global]
  netbios name = SERVER
# workgroup = NT-Domain-Name or Workgroup-Name, eg: LINUX2
  workgroup = WORKGROUP

# server string is the equivalent of the NT Description field
  server string = SERVER

# Security mode. Defines in which mode Samba will operate. Possible
# values are share, user, server, domain and ads. Most people will want
# user level security. See the HOWTO Collection for details.
  security = user
  map to guest = Bad User

# This option is important for security. It allows you to restrict
# connections to machines which are on your local network. The
# following example restricts access to two C class networks and
# the "loopback" interface. For more examples of the syntax see
# the smb.conf man page
  hosts allow = 192.168. 25.

# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
  load printers = yes

# you may wish to override the location of the printcap file
;  printcap name = /etc/printcap
  printcap name = cups

# on SystemV system setting printcap name to lpstat should allow
# you to automatically obtain a printer list from the SystemV spool
# system
;  printcap name = lpstat

# It should not be necessary to specify the print system type unless
# it is non-standard. Currently supported print systems include:
# bsd, cups, sysv, plp, lprng, aix, hpux, qnx
  printing = cups

# Uncomment this if you want a guest account, you must add this to /etc/passwd
# otherwise the user "nobody" is used
  guest only = yes
  guest account = ted

# this tells Samba to use a separate log file for each machine
# that connects
  log file = /var/log/samba/sambaserver.log

# Put a capping on the size of the log files (in Kb).
  max log size = 50

# Use password server option only with security = server
# The argument list may include:
#  password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
# or to auto-locate the domain controller/s
#  password server = *
;  password server = <NT-Server-Name>

# Use the realm option only with security = ads
# Specifies the Active Directory realm the host is part of
;  realm = MY_REALM

# Backend to store user information in. New installations should
# use either tdbsam or ldapsam. smbpasswd is available for backwards
# compatibility. tdbsam requires no further configuration.
;  passdb backend = tdbsam

# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting.
# Note: Consider carefully the location in the configuration file of
#      this line.  The included file is read at that point.
;  include = /usr/local/samba/lib/smb.conf.%m

# Most people will find that this option gives better performance.
# See the chapter 'Samba performance issues' in the Samba HOWTO Collection
# and the manual pages for details.
# You may want to add the following on a Linux system:
#        SO_RCVBUF=8192 SO_SNDBUF=8192

# Configure Samba to use multiple interfaces
# If you have multiple network interfaces then you must list them
# here. See the man page for details.
  interfaces = eth0 192.168.1.12/24
  bind interfaces only = no

# Browser Control Options:
# set local master to no if you don't want Samba to become a master
# browser on your network. Otherwise the normal election rules apply
;  local master = no

# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
;  os level = 33

# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
;  domain master = yes

# Preferred Master causes Samba to force a local browser election on startup
# and gives it a slightly higher chance of winning the election
;  preferred master = yes

# Enable this if you want Samba to be a domain logon server for
# Windows95 workstations.
;  domain logons = yes

# if you enable domain logons then you may want a per-machine or
# per user logon script
# run a specific logon batch file per workstation (machine)
;  logon script = %m.bat
# run a specific logon batch file per username
;  logon script = %U.bat

# Where to store roving profiles (only for Win95 and WinNT)
#        %L substitutes for this servers netbios name, %U is username
#        You must uncomment the [Profiles] share below
;  logon path = \\%L\Profiles\%U

# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
  wins support = yes

# WINS Server - Tells the NMBD components of Samba to be a WINS Client
#        Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
;  wins server = 192.168.1.12

# WINS Proxy - Tells Samba to answer name resolution queries on
# behalf of a non WINS capable client, for this to work there must be
# at least one        WINS Server on the network. The default is NO.
  wins proxy = yes

# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups. The default is NO.
  dns proxy = no

# These scripts are used on a domain controller or stand-alone
# machine to add or delete corresponding unix accounts
;  add user script = /usr/sbin/useradd %u
;  add group script = /usr/sbin/groupadd %g
;  add machine script = /usr/sbin/adduser -n -g machines -c Machine -d /dev/null -s /bin/false %u
;  delete user script = /usr/sbin/userdel %u
;  delete user from group script = /usr/sbin/deluser %u %g
;  delete group script = /usr/sbin/groupdel %g

browseable = yes
public = yes
name resolve order = wins hosts lmhosts
encrypt passwords = true
short preserve case = yes
preserve case = yes
available = yes
follow symlinks = yes
wide links = yes
unix extensions = no

#============================ Share Definitions ==============================

[main]
  comment = main
  path = /mnt/main
  writable = yes
  readonly = no

[linux]
  comment = tmp
  path = /mnt/linux
  writable = yes
  readonly = no

[removeable]
  comment = removeable
  path = /misc
  writable = yes
  readonly = no

[ted]
  comment = ted
  path = /home/ted
  writable = yes
  readonly = no

# NOTE: If you have a BSD-style print system there is no need to
# specifically define each individual printer
[printers]
  comment = All Printers
  path = /var/spool/samba
  guest ok = yes
  writable = yes
  printable = yes
  guest account = root
  create mode = 0700
  use client driver = yes

Thanks~!

smallpond 02-17-2017 09:26 AM

Looks like a boot order problem. Are you attempting to start samba before networking? Are you attempting to mount /var/run over smb?

ted_chou12 02-17-2017 07:12 PM

this is in /etc/rc4.d:
Code:

drwxr-xr-x  2 root root 4.0K Sep 11  2013 ./
drwxr-xr-x 10 root root 4.0K Feb 17 23:45 ../
lrwxrwxrwx  1 root root  21 Aug 15  2012 K40cron -> /etc/rc.d/init.d/cron*
lrwxrwxrwx  1 root root  15 Jan  2  2003 K45samba -> ../init.d/samba*
lrwxrwxrwx  1 root root  14 Jan  2  2003 K48sshd -> ../init.d/sshd*
lrwxrwxrwx  1 root root  15 Jan  2  2003 K49inetd -> ../init.d/inetd*
lrwxrwxrwx  1 root root  27 May 28  2013 K4logmein-hamachi -> /etc/init.d/logmein-hamachi*
lrwxrwxrwx  1 root root  14 Jan  2  2003 K60cups -> ../init.d/cups*
lrwxrwxrwx  1 root root  17 Jan  2  2003 K69portmap -> ../init.d/portmap*
lrwxrwxrwx  1 root root  36 Aug 17  2012 K6transmission-daemon -> /etc/rc.d/init.d/transmission-daemon*
lrwxrwxrwx  1 root root  18 Aug 12  2012 K76firewall -> ../init.d/firewall*
lrwxrwxrwx  1 root root  13 Jan  2  2003 K8gpm -> ../init.d/gpm*
lrwxrwxrwx  1 root root  18 Aug 12  2012 S23firewall -> ../init.d/firewall*
lrwxrwxrwx  1 root root  17 Jan  2  2003 S30portmap -> ../init.d/portmap*
lrwxrwxrwx  1 root root  14 Jan  2  2003 S39cups -> ../init.d/cups*
lrwxrwxrwx  1 root root  15 Jan  2  2003 S50inetd -> ../init.d/inetd*
lrwxrwxrwx  1 root root  14 Jan  2  2003 S51sshd -> ../init.d/sshd*
lrwxrwxrwx  1 root root  21 Aug 15  2012 S70cron -> /etc/rc.d/init.d/cron*
lrwxrwxrwx  1 root root  22 Feb 17  2013 S85samba -> /etc/rc.d/init.d/samba*
lrwxrwxrwx  1 root root  13 Jan  2  2003 S91gpm -> ../init.d/gpm*
lrwxrwxrwx  1 root root  36 Aug 17  2012 S93transmission-daemon -> /etc/rc.d/init.d/transmission-daemon*
lrwxrwxrwx  1 root root  27 May 28  2013 S94logmein-hamachi -> /etc/init.d/logmein-hamachi*

This is the directory /var/run:
Code:

server://var/run
root:# ls -alh
total 180K
drwxr-xr-x 23 root  root  4.0K Feb 18 09:44 ./
drwxr-xr-x 19 root  root  4.0K Feb 10  2013 ../
drwxr-xr-x  2 root  root  4.0K Feb 17  2013 ConsoleKit/
-rw-r--r--  1 root  root    5 Feb 18 09:43 acpid.pid
srw-rw-rw-  1 root  root    0 Feb 18 09:43 acpid.socket=
drwxr-xr-x  2 root  root  4.0K Mar  6  2010 autofs/
----------  1 root  root    5 Feb 18 09:43 autofs-running
prw-------  1 root  root    0 Feb 18 09:43 autofs.fifo-misc|
prw-------  1 root  root    0 Feb 18 09:43 autofs.fifo-net|
drwxr-xr-x  2 avahi avahi 4.0K Feb 18 09:43 avahi-daemon/
-rw-r--r--  1 root  root    5 Feb 18 09:43 avahi-dnsconfd.pid
drwxr-xr-x  2 root  root  4.0K Feb 17  2013 console/
drwxr-xr-x  3 root  lp    4.0K Jan  2  2003 cups/
drwxr-xr-x  2 root  root  4.0K Feb 18 09:43 dbus/
drwxr-xr-x  4 root  root  4.0K Feb 18 09:44 dhcpcd/
-rw-rw-r--  1 root  root    5 Feb 18 09:44 dhcpcd-eth0.pid
-rw-------  1 root  root    9 Feb 18 09:43 fetchmail.pid
-rw-r--r--  1 root  root    5 Feb 18 09:43 gpm.pid
-rw-r--r--  1 root  root    5 Feb 18 09:43 inetd.pid
-rw-r--r--  1 root  root    5 Feb 18 09:43 klogd.pid
drwxr-xr-x  2 root  root  4.0K Jan 17  2011 libgpod/
drwxr-xr-x  2  208  208 4.0K Feb 18 09:43 lighttpd/
-rw-r--r--  1 root  root    5 Feb 18 09:43 lighttpd.pid
drwxr-xr-x  2 root  root  4.0K Sep 24  2011 lirc/
drwxr-xr-x  2 root  root  4.0K Feb 17 01:29 logmein-hamachi/
drwxr-xr-x  2 root  root  4.0K Feb 16  2011 lvm/
drwxr-xr-x  2 mysql mysql 4.0K Sep 28  2015 mysql/
drwxr-xr-x  2 mysql root  4.0K Sep 28  2015 mysqld/
drwxr-xr-x  2 root  root  4.0K May 28  2011 named/
-rw-r--r--  1 root  root    5 Feb 18 09:43 nmbd.pid
drwxr-xr-x  2 root  root  4.0K Dec 12  2011 nscd/
drwxr-xr-x  4 root  root  4.0K Aug 12  2012 pm-utils/
-rw-------  1 root  root  362 Feb 18 09:43 portmap_mapping
-rw-r--r--  1 root  root  6.3K Feb 16 08:33 proftpd.delay
-rw-r--r--  1 root  root  5.4K Feb 16 08:33 proftpd.scoreboard
srwxrwxrwx  1 root  root    0 Feb 16 08:33 proftpd.sock=
drwxr-xr-x  5 root  root  4.0K Feb 18  2013 samba/
srw-rw-rw-  1 root  root    0 Jun 12  2015 sdp=
-rw-------  1 root  smmsp  44 Feb 18 09:43 sendmail.pid
-rw-r--r--  1 root  root    5 Feb 18 09:43 smbd.pid
drwxr-xr-x  2 root  root  4.0K Aug  2  2011 squid/
-rw-r--r--  1 root  root    5 Feb 18 09:43 sshd.pid
-rw-r--r--  1 root  root    5 Feb 18 09:43 syslogd.pid
-rw-r--r--  1 root  root    4 Feb 18 09:43 transmission-daemon.pid
drwx------  2 root  root  4.0K Aug 30  2011 udisks/
-rw-rw-r--  1 root  utmp  4.9K Feb 18 10:08 utmp
drwxr-xr-x  2 root  root  4.0K Feb 18 09:43 wicd/
srwxrwxrwx  1 root  root    0 Jun 21  2014 wippien.sock=

Which is the service that samba is trying to get ahead of?

Thanks in advance.

smallpond 02-19-2017 11:49 AM

This says interface lo is not up yet, so it looks like samba is starting before networking.
Code:

Unable to connect to CUPS server localhost:631 - Network is unreachable

ted_chou12 02-20-2017 10:27 AM

Thanks smallpond!

Code:

ted:$ ls -alh
總計 8.0K
drwxr-xr-x  2 root root 4.0K  2月 20 22:12 ./
drwxr-xr-x 10 root root 4.0K  2月 17 23:45 ../
lrwxrwxrwx  1 root root  21  8月 19  2012 K40cron -> /etc/rc.d/init.d/cron*
lrwxrwxrwx  1 root root  22  8月 19  2012 K45samba -> /etc/rc.d/init.d/samba*
lrwxrwxrwx  1 root root  21  8月 19  2012 K48sshd -> /etc/rc.d/init.d/sshd*
lrwxrwxrwx  1 root root  22  8月 19  2012 K49inetd -> /etc/rc.d/init.d/inetd*
lrwxrwxrwx  1 root root  27  5月 28  2013 K4logmein-hamachi -> /etc/init.d/logmein-hamachi*
lrwxrwxrwx  1 root root  21  8月 19  2012 K60cups -> /etc/rc.d/init.d/cups*
lrwxrwxrwx  1 root root  24  8月 19  2012 K69portmap -> /etc/rc.d/init.d/portmap*
lrwxrwxrwx  1 root root  36  8月 19  2012 K6transmission-daemon -> /etc/rc.d/init.d/transmission-daemon*
lrwxrwxrwx  1 root root  18  8月 12  2012 K76firewall -> ../init.d/firewall*
lrwxrwxrwx  1 root root  20  8月 19  2012 K8gpm -> /etc/rc.d/init.d/gpm*
lrwxrwxrwx  1 root root  18  8月 12  2012 S23firewall -> ../init.d/firewall*
lrwxrwxrwx  1 root root  24  8月 19  2012 S30portmap -> /etc/rc.d/init.d/portmap*
lrwxrwxrwx  1 root root  22  8月 19  2012 S35inetd -> /etc/rc.d/init.d/inetd*
lrwxrwxrwx  1 root root  21  8月 19  2012 S39cups -> /etc/rc.d/init.d/cups*
lrwxrwxrwx  1 root root  21  8月 19  2012 S51sshd -> /etc/rc.d/init.d/sshd*
lrwxrwxrwx  1 root root  21  8月 19  2012 S70cron -> /etc/rc.d/init.d/cron*
lrwxrwxrwx  1 root root  22  2月 17  2013 S85samba -> /etc/rc.d/init.d/samba*
lrwxrwxrwx  1 root root  20  8月 19  2012 S91gpm -> /etc/rc.d/init.d/gpm*
lrwxrwxrwx  1 root root  36  8月 19  2012 S93transmission-daemon -> /etc/rc.d/init.d/transmission-daemon*
lrwxrwxrwx  1 root root  27  5月 28  2013 S94logmein-hamachi -> /etc/init.d/logmein-hamachi*
server://etc/rc3.d

but as shown in the boot order of the rc3.d/rc4.d directory, cups and samba both start after inetd... I wonder what is actually the network service? In addition, I tried ssh immediately after boot up, I get connection refused for the first 1-2 minutes, and after that I can ssh normally, I suspect that the network does take a long time to startup. But how do I fix it?

Thanks,
Ted

ghp 02-24-2017 07:41 AM

Quote:

Originally Posted by ted_chou12 (Post 5673551)

but as shown in the boot order of the rc3.d/rc4.d directory, cups and samba both start after inetd... I wonder what is actually the network service? In addition, I tried ssh immediately after boot up, I get connection refused for the first 1-2 minutes, and after that I can ssh normally, I suspect that the network does take a long time to startup. But how do I fix it?

Thanks,
Ted

inetd is not network, but without knowing your distribution and version, it is hard to say how en when your network is initialized.

polpak 02-25-2017 06:23 PM

When try check samba is running try command : sudo smbstatus ; sudo nmbstatus ;



.

ted_chou12 02-26-2017 05:32 AM

@ghp
This is something regarding the distribution I am working on, It is a Vector Linux 7.0 built on some type of Slackware
Code:

Last login: Fri Feb 24 23:36:33 2017 from teddembp
7.0 LIGHT built on March-20-2012 on Linux 3.0.17
You are working as ted
Frequently used programs:
Configuration  : vasm
File manager  : mc (press F2 for useful menu)
Editor        : mcedit, nano, vi
Multimedia    : alsamixer, play
Default X      : startx
server:/~
ted:$ uname -a
Linux server 3.0.17 #1 SMP Fri Jan 20 08:54:56 MST 2012 i686 Intel(R) Celeron(R) CPU 2.40GHz GenuineIntel GNU/Linux

@polpak
Thanks for the tip. But after I restarted, everything seemed normal. I think the smb status is shown in the Log as well.


All times are GMT -5. The time now is 01:10 AM.