web-dev-qa-db-fra.com

Samba 4.8 sur Ubuntu 16.04

J'ai compilé à partir de la source samba 4.8 sur Ubuntu xenial, mais je ne peux pas le démarrer.

En suivant les instructions de samba.org, je suis arrivé au point où, dans /usr/local/samba/sbin et /usr/local/samba/bin, j’ai les fichiers exécutables, et avant de désinstaller l’ancienne version 4.3 sur mon ordinateur, j’ai sauvegardé le fichier /etc/init.d/smbd afin de le faire fonctionner. Mais même après avoir changé l'emplacement des fichiers binaires dans le fichier init.d, cela ne fonctionne toujours pas.

si je lance /etc/init.d/smbd start c'est ce que je reçois

[....] Starting smbd (via systemctl): smbd.serviceJob for smbd.service failed because the control process exited with error code. See "systemctl status smbd.service" and "journalctl -xe" for details.
failed!

Ceci est la sortie pour journalctl -xe

-- i servizi attivati sono in fase di completamento.
-- 
-- L'avvio del kernel ha richiesto KERNEL_USEC microsecondi.
-- 
-- L'avvio del disco RAM ha richiesto INITRD_USEC microsecondi.
-- 
-- L'avvio dello userspace ha richiesto 24776 microsecondi.
mar 26 23:18:12 apollo systemd[1]: Started User Manager for UID 1001.
-- Subject: L'unità [email protected] termina la fase di avvio
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- L'unità [email protected] ha terminato la fase di avvio.
-- 
-- La fase di avvio è done.
mar 26 23:18:30 apollo Sudo[11809]: pam_unix(Sudo:session): session closed for user root
mar 26 23:18:46 apollo Sudo[11913]: francesco : TTY=pts/1 ; PWD=/home/francesco ; USER=root ; COMMAND=/bin/nano /lib/systemd/system/smbd.service
mar 26 23:18:46 apollo Sudo[11913]: pam_unix(Sudo:session): session opened for user root by francesco(uid=0)
mar 26 23:19:03 apollo Sudo[11913]: pam_unix(Sudo:session): session closed for user root
mar 26 23:19:06 apollo Sudo[11929]: francesco : TTY=pts/1 ; PWD=/home/francesco ; USER=root ; COMMAND=/etc/init.d/smbd start
mar 26 23:19:06 apollo Sudo[11929]: pam_unix(Sudo:session): session opened for user root by francesco(uid=0)
mar 26 23:19:06 apollo systemd[1]: Starting Samba SMB/CIFS server...
-- Subject: L'unità smbd.service inizia la fase di avvio
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- L'unità smbd.service ha iniziato la fase di avvio.
mar 26 23:19:06 apollo systemd[1]: smbd.service: Control process exited, code=exited status=1
mar 26 23:19:06 apollo systemd[1]: Failed to start Samba SMB/CIFS server.
-- Subject: L'unità smbd.service è fallita
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- L'unità smbd.service è fallita.
-- 
-- Il risultato è failed.
mar 26 23:19:06 apollo systemd[1]: smbd.service: Unit entered failed state.
mar 26 23:19:06 apollo systemd[1]: smbd.service: Failed with result 'exit-code'.
mar 26 23:19:06 apollo Sudo[11929]: pam_unix(Sudo:session): session closed for user root

Désolé pour les messages en italien, mais les plus importants sont en anglais.

C'est le script init.d

#!/bin/sh

### BEGIN INIT INFO
# Provides:          smbd
# Required-Start:    $network $local_fs $remote_fs
# Required-Stop:     $network $local_fs $remote_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Should-Start:      slapd cups
# Should-Stop:       slapd cups
# Short-Description: start Samba SMB/CIFS daemon (smbd)
### END INIT INFO


PIDDIR=/var/run/samba
SMBDPID=$PIDDIR/smbd.pid

# clear conflicting settings from the environment
unset TMPDIR

# See if the daemons are there
test -x /usr/local/samba/sbin/smbd || exit 0

. /lib/lsb/init-functions

case $1 in
    start)
        if init_is_upstart; then
            exit 1
        fi
        SERVER_ROLE=`samba-tool testparm --parameter-name="server role"  2>/dev/null | tail -1`
        if [ "$SERVER_ROLE" = "Active Directory domain controller" ]; then
            exit 0
        fi

        log_daemon_msg "Starting SMB/CIFS daemon" smbd
        # Make sure we have our PIDDIR, even if it's on a tmpfs
        install -o root -g root -m 755 -d $PIDDIR

        if ! start-stop-daemon --start --quiet --oknodo --exec /usr/local/samba/sbin/smbd -- -D; then
            log_end_msg 1
            exit 1
        fi

        log_end_msg 0
        ;;
    stop)
        if init_is_upstart; then
            exit 0
        fi

        log_daemon_msg "Stopping SMB/CIFS daemon" smbd

        start-stop-daemon --stop --quiet --pidfile $SMBDPID
        # Wait a little and remove stale PID file
        sleep 1
        if [ -f $SMBDPID ] && ! ps h `cat $SMBDPID` > /dev/null
        then
            # Stale PID file, remove it (should be removed by
            # smbd itself IMHO).
            rm -f $SMBDPID
        fi

        log_end_msg 0

        ;;
    reload)
        log_daemon_msg "Reloading /etc/samba/smb.conf" smbd

        start-stop-daemon --stop --quiet --signal HUP --pidfile $SMBDPID

        log_end_msg 0
        ;;
    restart|force-reload)
        if init_is_upstart; then
            exit 1
        fi
        $0 stop
        sleep 1
        $0 start
        ;;
        status)
        status_of_proc -p $SMBDPID /usr/local/samba/sbin/smbd smbd
        exit $?
        ;;
    *)
        echo "Usage: /etc/init.d/smbd {start|stop|reload|restart|force-reload|status}"
        exit 1
        ;;
esac

exit 0

Et c'est le smbd.service

[Unit]
Description=Samba SMB/CIFS server
After=network.target nmbd.service winbindd.service

[Service]
Type=forking
ExecStart=/usr/local/samba/sbin/smbd -D
ExecReload=/bin/kill -HUP $MAINPID

[Install]
WantedBy=multi-user.target

Le PIDDIR et le SMBPID sont-ils importants?

Même si je lance Sudo /usr/local/samba/sbin/smbd -D je n’ai toujours rien, aucune erreur et aucun smb ne s'affiche dans ps aux | grep smb

2

Après quelques essais, exécutant principalement Sudo smbd -FS pour afficher la sortie en tant que sortie standard, j’ai constaté que l’exécutable situé dans /usr/local/samba/sbin ne charge pas le fichier /etc/samba/smb.conf mais le /usr/local/samba/etc/smb.conf . Après avoir copié celui par défaut à l'emplacement prévu, tout a commencé à fonctionner correctement.

C'était probablement un drapeau de configuration que j'ai manqué. J'espère que cela aidera quelqu'un d'autre avec le même problème.

De plus, comme le processus d’installation à partir du code source ne le fait pas, j’ai dû ajouter le dossier smb.service in /etc/avahi/services/ pour être publié correctement.

Je travaille toujours sur la manière de l’afficher sur le réseau sous Windows, mais la connexion avec\ip.add.re.ss fonctionne, et elle fonctionne correctement sur Mac.

2