• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

[gelöst] Samba stirbt

Harmless

Newbie
Hallo zusammen
ich versuche nach http://en.opensuse.org/Howto_setup_SUSE_11.1_as_Samba_PDC dieser Anleitung einen PDC aufzusetzen. Jedoch stirbt der smb Daemon noch kurzer Zeit immer.

  • ===============================================================
    [2010/03/13 17:24:20, 0] lib/fault.c:fault_report(41)
    INTERNAL ERROR: Signal 6 in pid 4608 (3.2.7-11.4.1-2210-SUSE-CODE11)
    Please read the Trouble-Shooting section of the Samba3-HOWTO
    [2010/03/13 17:24:20, 0] lib/fault.c:fault_report(43)

    From: http://www.samba.org/samba/docs/Samba3-HOWTO.pdf
    [2010/03/13 17:24:20, 0] lib/fault.c:fault_report(44)
    ===============================================================
    [2010/03/13 17:24:20, 0] lib/util.c:smb_panic(1671)
    PANIC (pid 4608): internal error
    [2010/03/13 17:24:20, 0] lib/util.c:log_stack_trace(1775)
    BACKTRACE: 12 stack frames:
    #0 /usr/sbin/smbd(log_stack_trace+0x2d) [0xb743849d]
    #1 /usr/sbin/smbd(smb_panic+0x2d) [0xb743859d]
    #2 /usr/sbin/smbd [0xb7421126]
    #3 [0xffffe400]
    #4 [0xffffe430]
    #5 /lib/libc.so.6(gsignal+0x50) [0xb6bdc990]
    #6 /lib/libc.so.6(abort+0x188) [0xb6bde2c8]
    #7 /usr/sbin/smbd(talloc_free+0x22d) [0xb74064dd]
    #8 /usr/sbin/smbd(init_guest_info+0xb8) [0xb748ac28]
    #9 /usr/sbin/smbd(main+0x81e) [0xb767988e]
    #10 /lib/libc.so.6(__libc_start_main+0xe5) [0xb6bc8705]
    #11 /usr/sbin/smbd [0xb71fd901]
    [2010/03/13 17:24:20, 0] lib/fault.c:dump_core(201)
    dumping core in /var/log/samba/cores/smbd
  • # smb.conf is the main samba configuration file. You find a full commented
    # version at /usr/share/doc/packages/samba/examples/smb.conf.SuSE
    # Date: 2003-03-17
    [global]
    unix charset = LOCALE
    workgroup = ITEGA
    netbios name = pdc
    passdb backend = ldapsam:"ldap://pdc.itega.lan"
    username map = /etc/samba/smbusers
    log level = 10
    syslog = 0
    log file = /var/log/samba/%m
    MAX LOG SIZE = 0
    name resolve order = wins bcast host
    time server = Yes
    printcap name = CUPS
    add user script = /usr/sbin/smbldap-useradd -m '%u'
    delete user script = /usr/sbin/smbldap-userdel '%u'
    add group script = /usr/sbin/smbldap-groupadd -p '%g
    delete group script = /usr/sbin/smbldap-groupdel '%g'
    add user to group script = /usr/sbin/smbldap-groupmod -m '%u' '%g'
    delete user from group script = /usr/sbin/smbldap-groupmod -x '%u' '%g'
    set primary group script = /usr/sbin/smbldap-usermod -g '%g' '%u'
    add machine script = /usr/sbin/smbldap-useradd -w '%u'
    logon script = logon.cmd
    logon path = \\pdc\profiles\%u
    logon drive = H:
    domain logons = Yes
    domain master = Yes
    wins support = Yes
    ldapsam:trusted = Yes
    ldap suffix = dc=itega,dc=lan
    ldap machine suffix = ou=Computers,ou=Users
    ldap user suffix = ou=People,ou=Users
    ldap group suffix = ou=Groups
    ldap idmap suffix = ou Idmap
    ldap admin dn = cn=sambaadmin,dc=itega,dc=lan
    idmap backend = ldap://127.0.0.1
    idmap uid = 10000-20000
    idmap gid = 10000-20000
    printing = cups
    [tmp]
    comment = temporary file
    path = /tmp
    read only = yes

    [homes]
    comment = Home Directories
    valid users = %S
    browseable = yes
    writable = yes
    create mask = 0600
    directory mask = 0700

    [sysvol]
    path = /home/samba/sysvol
    read only = no

    [netlogon]
    comment = Netzwerk Logon
    path = /home/samba/sysvol/itega.lan/scripts
    writable = yes
    browseable = yes
    read only = No

    [profiles]
    comment = Profile
    path = /home/samba/profiles
    writable = Yes
    browseable = No
    read only = No
    create mode = 0777
    directory mode = 0777

any hints?
 
OP
H

Harmless

Newbie
Das Problem bestand darin, dass samba den User nobody nicht gefunden hat. Nachdem ich nochmal smbldap-populate ausgeführt und die Passwörter aktualisiert habe, ging es.
 
Oben