127

Sorry this is a little embarassing but I'm trying to set up my own server for the first time. I found great tutorial online.

http://www.intac.net/build-your-own-server/

I'm stuck at the 2nd to last line of step 4. Apparently there is no samba directory in init.d.

Why isn't there a samba directory in init.d?

Would the following work?

# sudo restart smbd
# sudo restart nmdb
Braiam
  • 69,112
user784637
  • 11,465

5 Answers5

190

Start

sudo service smbd start

Stop

sudo service smbd stop

Restart

sudo service smbd restart
Bruno Pereira
  • 74,715
20

Starting with 15.04 and systemd, the command is systemctl restart smbd

mirh
  • 374
16

You can also do this way:

Start

sudo /etc/init.d/smbd start

Stop

sudo /etc/init.d/smbd stop

Restart

sudo /etc/init.d/smbd restart

If you got an error, try using these commends this nmbd instead.

One Zero
  • 27,761
11

you may also try this :

check the name of the service:

service --status-all

restart the service

sudo service samba restart
Seth
  • 59,332
derdonn
  • 111
  • 1
  • 2
1

On RHEL you start smb and nmb:

systemctl start smb
systemctl start nmb

Next, check if they started:

ps -elf | grep smbd
ps -elf | grep nmbd
Darrin
  • 111