nmbd fails to start on boot - problem with upstart
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
samba (Ubuntu) |
Fix Released
|
Medium
|
Jelmer Vernooij | ||
Lucid |
Won't Fix
|
Undecided
|
Unassigned | ||
Maverick |
Won't Fix
|
Medium
|
Chuck Short |
Bug Description
Binary package hint: samba
1. Release of Ubuntu is 10.04 LTS
2. Version of Samba is - 3.4.7
Problem - Expected nmbd service to start at boot but it failed to start at boot. We have multiple systems but this problem has been noticed only on certain systems. The same packages were installed on all systems. As a workaround, we changed the pre start script configuration file for nmbd - /etc/init/nmbd.conf to make it start at boot always. The following 2 lines were commented in the nmbd.conf file -
[ "x$NMBD_DISABLED" = xYes ] && { stop; exit 0; }
I don't think that I understand what the second line is trying to do. Please check and advise how to fix this problem.
Related branches
Changed in samba (Ubuntu): | |
assignee: | nobody → Chuck Short (zulcss) |
importance: | High → Medium |
Changed in samba (Ubuntu Lucid): | |
assignee: | Chuck Short (zulcss) → nobody |
tags: | added: server-mrs |
Changed in samba (Ubuntu): | |
assignee: | Chuck Short (zulcss) → Jelmer Vernooij (jelmer) |
Changed in samba (Ubuntu Lucid): | |
status: | New → Confirmed |
No manual changes were made to samba configuration file. Here it goes.
#
# Sample configuration file for the Samba suite for Debian GNU/Linux.
#
#
# 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 most of which
# are not shown in this example
#
# Some options that are often worth tuning have been included as
# commented-out examples in this file.
# - When such options are commented with ";", the proposed setting
# differs from the default Samba behaviour
# - When commented with "#", the proposed setting is the default
# behaviour of Samba but the option is considered important
# enough to be mentioned here
#
# NOTE: Whenever you modify this file you should run the command
# "testparm" to check that you have not made any basic syntactic
# errors.
# A well-established practice is to name the original file
# "smb.conf.master" and create the "real" config file with
# testparm -s smb.conf.master >smb.conf
# This minimizes the size of the really used smb.conf file
# which, according to the Samba Team, impacts performance
# However, use this with caution if your smb.conf file contains nested
# "include" statements. See Debian bug #483187 for a case
# where using a master file is not a good idea.
#
#====== ======= ======= === Global Settings ======= ======= ======= ==
[global]
## Browsing/ Identification ###
# Change this to the workgroup/NT-domain name your Samba server will part of
workgroup = WORKGROUP
# server string is the equivalent of the NT Description field
server string = %h server (Samba, Ubuntu)
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
# wins support = no
# 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 = w.x.y.z
# This will prevent nmbd to search for NetBIOS names through DNS.
dns proxy = no
# What naming service and in what order should we use to resolve host names
# to IP addresses
; name resolve order = lmhosts host wins bcast
#### Networking ####
# The specific set of interfaces / networks to bind to
# This can be either the interface name or an IP address/netmask;
# interface names are normally preferred
; interfaces = 127.0.0.0/8 eth0
# Only bind to the named interfaces and/or networks; you must use the
# 'interfaces' option above to use this.
# It is recommended that you enable this feature if your Samba machine is
# not protected by a firewall or is a firewall itself. However, this
# option cannot handle dynamic or non-broadcast interfaces correctly.
; bind interfaces only = yes
#### Debugging/ Accounting ####
# This tells Samba to use a separate log file for each machine samba/log. %m
# that connects
log file = /var/log/
# Cap the size of the individual log files (in KiB).
max log size = 1000
# If you want Samba to only log through syslog then set the following
# parameter to 'yes'.
# syslog only = no
# We want Samba to log a minimum amount of informat...