Displaying 11 results from an estimated 11 matches for "nmbdoption".
Did you mean:
nmbdoptions
2002 May 23
1
$SMBDOPTIONS in xinetd.conf
...ik -n winlux
echo "."
here comes the rest .....
now the new RH 7.1 version :
start() {
KIND="SMB"
echo -n $"Starting $KIND services: "
daemon smbd $SMBDOPTIONS
RETVAL=$?
echo
KIND="NMB"
echo -n $"Starting $KIND services: "
daemon nmbd $NMBDOPTIONS
RETVAL2=$?
and so on ....
now : whre is optionsfiled or whre can I declare "my options like
"-D -d 2 \
-G musik -n winlux"
havn't found anything in the docs, so I would be very happy to get some help
from this list.
thanks to all from you
hans schneidhofer
<hs.priv@ao...
2016 Jul 12
5
Option configure
2016-07-10 2:12 GMT+02:00 Andrew Bartlett <abartlet at samba.org>:
> On Sat, 2016-07-09 at 11:27 +0200, Marc Muehlfeld wrote:
> > Hello,
> >
> > Am 09.07.2016 um 09:14 schrieb Rowland penny:
> > > > What is the purpose of the option
> > > > *
> > > > **--with-**systemd**
> > > > ****Enable****systemd****integration*
>
2016 Jul 12
0
Option configure
...ice files - I guess as a
result of the --with-systemd switch.
The content of the nmb.service file is:
[Unit]
Description=Samba NMB Daemon
After=syslog.target network.target
[Service]
Type=notify
NotifyAccess=all
PIDFile=/run/nmbd.pid
EnvironmentFile=-/etc/sysconfig/samba
ExecStart=/usr/sbin/nmbd $NMBDOPTIONS
ExecReload=/usr/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target
We then replaced the current .service files on the system with the ones
from the compiled package. However doing
systemctl restart nmb smb winbind
would cause each service to start and then die after a little while.
Inc...
2017 Jun 20
1
[4.2.14-Debian] Smbd not listening on 192.168.0.x on cold start
...ystem/nmbd.service
[Unit]
Description=Samba NMB Daemon
Documentation=man:nmbd(8) man:samba(7) man:smb.conf(5)
After=network-online.target
Wants=network-online.target
[Service]
Type=notify
NotifyAccess=all
PIDFile=/var/run/samba/nmbd.pid
EnvironmentFile=-/etc/default/samba
ExecStart=/usr/sbin/nmbd $NMBDOPTIONS
ExecReload=/bin/kill -HUP $MAINPID
LimitCORE=infinity
[Install]
WantedBy=multi-user.target
---------------
But again, i never change these file, its just not needed imo.
P.s.
For starting servers after you network is completely up.
You need these
After=network-online.target ( maybe also oth...
2016 Jul 12
1
Option configure
...RE=infinity
[Install]
WantedBy=multi-user.target
nmbd.service
[Unit]
Description=Samba NMB Daemon
Documentation=man:nmbd(8) man:samba(7) man:smb.conf(5)
After=network.target
[Service]
Type=notify
NotifyAccess=all
PIDFile=/run/nmbd.pid
EnvironmentFile=-/etc/default/samba
ExecStart=/usr/sbin/nmbd $NMBDOPTIONS
ExecReload=/bin/kill -HUP $MAINPID
LimitCORE=infinity
[Install]
WantedBy=multi-user.target
winbind.service
[Unit]
Description=Samba Winbind Daemon
Documentation=man:winbindd(8) man:samba(7) man:smb.conf(5)
After=network.target nmb.service
[Service]
Type=notify
NotifyAccess=all
PIDFile=/run/winb...
2004 Dec 08
2
configure dual samba 3.0.8 instances-one fedora box
Greetings,
I've a need to run 2 instances on one box. I've spent the better part
of 2 days looking for docs and howto's and reading the FM. However, I
think I'm making too much out of it, thinking that there is more to it
than there really is.
the first instance is to serve the users, the second instance is for
the backup system.
I'm running fedora core 2 with samba
2007 Sep 03
0
How to - Samba, winbind and Active Directory
.../samba/sbin"
start() {
KIND="SMB"
echo -n $"Starting $KIND services: "
daemon $SMBHOME/smbd $SMBDOPTIONS
RETVAL=$?
echo
KIND="NMB"
echo -n $"Starting $KIND services: "
daemon $SMBHOME/nmbd $NMBDOPTIONS
RETVAL2=$?
echo
KIND="Winbind"
echo -n $"Starting $KIND services: "
daemon $SMBHOME/winbindd
RETVAL3=$?
echo
[ $RETVAL -eq 0 -a $RETVAL2 -eq 0 -a $RETVAL3
-eq 0 ] && touch /var/lock/subsys/smb || \...
2017 Jun 19
5
[4.2.14-Debian] Smbd not listening on 192.168.0.x on cold start
So it looks like the init script in the Samba package in the Debian
repository needs to be edited for a non-DC home server.
--
View this message in context: http://samba.2283325.n4.nabble.com/4-2-14-Debian-Smbd-not-listening-on-192-168-0-x-on-cold-start-tp4720131p4720160.html
Sent from the Samba - General mailing list archive at Nabble.com.
2008 Aug 29
2
When to restart samba
If I understand correctly, in order to have the smb.conf file applied
you need to restart smbd.
Is "service smbd reload" sufficient (which does a "killproc smbd -HUP")?
Will this kill any active connections to samba resources causing user
disruption? Or is this a seamless process that can be carried out
midday?
I ask because if I need to kill all user connections to
2016 Jul 12
6
Option configure
Just backported 4.4.5 from debian sid to jessie. samba.service is masked
there. If running as an fileserver the services are started via
smbd.service,nmbd.service, winbind.service.
There is an samba-ad-dc script which is masked by default.
To get the ad-dc up and running with systemd one has to unmask
samba-ad-dc.service and mask smbd.service,nmbd.service, winbind.service.
This is the
2003 Mar 03
5
Samba 2.2.7 problem
I am running Samba 2.2.7 on a Red Hat 7.3 box.
1. I have some windows xp computer on my network.
With the following settings the Samab can not able to win the election.
local master = No
preferred master = Yes
domain master = No
changing to
local master = Yes
It can. How these settings should work?
2. When samba is running (ps -ax)
1828 ? S 0:00