MacOS Mojave’da Open Directory etkin olduğunda neden Dosya Paylaşımı’na erişemiyorum?


3

İşte izlediğim prosedür:

  1. MacOS Mojave'in yeni bir kopyasını APFS birimine yükleme

  2. İlk işletim sistemi yapılandırmasını yapın ve ilk açılışta 'admin' kullanıcısı oluşturun. 192.168.168.0/24 özel ağdan statik bir IP atayın. Özel ağda bulunan bir DNS sunucusu kullanın. IP'nin bir FQDN'ye ('test.mydomain.com') çözümlendiğinden emin olun (ve tersi).

  3. MacOS Server uygulamasını (5.7) App Store'dan indirin
  4. MacOS Server uygulamasını açın
  5. Varsayılan seçeneklerle yeni bir Open Directory etki alanı oluşturun
  6. Yerel Ağ Dizinine yeni bir kullanıcı 'test kullanıcısı' oluşturun
  7. Yerel Ağ Dizinine yeni bir grup 'test grubu' oluşturun
  8. Yeni oluşturulan 'test kullanıcısını' test grubuna atayın
  9. Sistem Tercihleri ​​uygulamasını aç
  10. Paylaşım tercihlerini aç
  11. Dosya Paylaşımını Etkinleştir
  12. Paylaşılan Klasör 'myshare' oluşturun ve 'test grubu' ve 'admin' atayın.
  13. SMB paylaşımının etkin olmasını sağlamak için 'myshare' seçeneğini seçin ve Seçenekler düğmesine tıklayın.

  14. Dosya sunucusuna aynı alt ağ içindeki bir istemci bilgisayardan smb: //test.mydomain.com/myshare veya alternatif olarak smb: //192.168.168.X/myshare 'admin' veya 'testuser' kimlik bilgilerini kullanarak bağlanmaya çalışın

Son adımda hem 'yönetici' hem de 'testuser' hesapları için bağlantı başarısız. Açık Dizini Kapalı'ya çevirirsem, 'admin' kullanıcısıyla bağlantı kurabilirim. İşlemin herhangi bir aşamasında tekrar başlatmalar hiçbir fark yaratmaz.

Açık Dizin etkinken neden SMB'ye erişemiyorum?

İşte OD master oluşturmaktan opendirectoryd log girişleri (5. adım): https://pastebin.com/uQm8b8NM

Giriş denemesinden opendirectoryd ve smbd log girişleri (adım 14): https://pastebin.com/U2RS3LYC & https://pastebin.com/7bFNfd8V


Daha da kötüsü, SMB şimdi Time Machine sunucu paylaşımları için gerekli. Bu yüzden Mojave'deki TM sunucusu etkin bir şekilde bozuldu.
Ortwin Gentz

Yanıtlar:


2

Mesele şu ki, ACL'ler SMB ve AFP için yerel dizinde kurulmamış. Bunlar, içinde Dosya Paylaşımı olan eski Sunucu uygulamalarında oluşturulur. Bütün bunlarla ilgilenen bir AppleScript yazdım. Dizinde uygun ACL grupları oluşturur (/Local/Default/Groups/com.apple.access_smb ve com.apple.access_afp), sonra tüm kullanıcıları ona ekler. Senaryo aşağıda. Bugün bu sorunu çözmek için bir araya getirdim. Umarım başkalarına yardımcı olacaktır.

-- Script to sort out ACLs for file sharing
set savedDelimiters to AppleScript's text item delimiters

display alert "Setup File Sharing ACLs" message "This script will set up the appropriate ACLs in the local directory to allow users to connect to file sharing on a macOS 10.14 server with OpenDirectory.

WARNING: Changes will be made to your local directory. Administrator privileges are required (you will be prompted for a password).

USE AT YOUR OWN RISK!

Set for all users, or only a single user?" buttons {"Cancel", "All Users", "Single User"} default button "Single User" cancel button "Cancel"

if button returned of result = "All Users" then
    set progress description to "Loading User List..."
    -- Load all directory users from the server
    -- (identified by UserShell value of '/bin/bash'; most likely to be normal users)
    -- The delimiter is horrible, but it's the only way to do it
    set delimiter to tab & tab & "UserShell = (" & return & "    \"/bin/bash\"" & return & ")"
    set AppleScript's text item delimiters to {delimiter & return, delimiter}
    set users to every text item of (do shell script "dscl /LDAPv3/127.0.0.1 search /Users UserShell \"/bin/bash\"")
else if button returned of result = "Single User" then
    repeat
        set username to the text returned of (display dialog "Enter Username:" default answer "" with icon note)
        if username is "" then
            display alert "Please enter username, or click cancel to end"
        else
            exit repeat
        end if
    end repeat
    -- Add blank element to end, as this happens with output from dscl above
    set users to {username, ""}
end if

-- Create the SMB & AFP ACL groups if necessary (this may be the first user)
createACLGroup("afp", 250)
createACLGroup("smb", 110)
-- Go through all the users now
set total to (length of users) - 1
set progress total steps to total
set progress description to "Adding Users to ACLs..."
set current to 0
repeat with idx from 1 to total
    -- Need to use indexed repeat because of issue with missing username in list from dscl
    set username to item idx of users
    try
        set progress completed steps to current
        set progress additional description to "User " & (current + 1) & " of " & total & " (" & username & ")"
        -- Now, check to see if the user is already in the file sharing lists
        set AppleScript's text item delimiters to {" "} -- Split words, not letters!
        set currList to every text item of (do shell script "dscl /Local/Default read Groups/com.apple.access_smb GroupMembership")
        if username is in currList and length of users is 1 then
            -- Only alert if in single user mode
            display alert "Username already set up"
        else
            -- Go ahead and set it up
            -- Firstly, get the user's GeneratedUID from the LDAP directory
            set isError to false
            try
                set guid to second item of (every text item of (do shell script "dscl /LDAPv3/127.0.0.1 read Users/" & username & " GeneratedUID"))
            on error
                display alert "Error" message "User " & username & " is not a directory user"
                set isError to true
            end try
            if not isError then
                -- Add the user to the group
                addUserToACL("afp", username, guid)
                addUserToACL("smb", username, guid)
            end if
        end if
        set current to current + 1
    on error
        -- Likely an empty username from the delimiters tokenising the list from dscl
    end try
end repeat
set current to total
display alert "Process completed!"

set AppleScript's text item delimiters to savedDelimiters

on createACLGroup(acltype, groupid)
    try
        do shell script "dscl /Local/Default read Groups/com.apple.access_smb"
    on error
        -- Doesn't exist, so we need to create it!
        do shell script "dscl /Local/Default create Groups/com.apple.access_" & acltype with administrator privileges
        do shell script "dscl /Local/Default create Groups/com.apple.access_" & acltype & " RealName \"" & changeCaseOfText(acltype, "upper") & " ACL\"" with administrator privileges
        do shell script "dscl /Local/Default create Groups/com.apple.access_" & acltype & " PrimaryGroupID " & groupid with administrator privileges
    end try
end createACLGroup

on addUserToACL(acltype, username, guid)
    do shell script "dscl /Local/Default append Groups/com.apple.access_" & acltype & "  GroupMembership " & username with administrator privileges
    do shell script "dscl /Local/Default append Groups/com.apple.access_" & acltype & " GroupMembers " & guid with administrator privileges
end addUserToACL

on changeCaseOfText(theText, theCaseToSwitchTo)
    if theCaseToSwitchTo contains "lower" then
        set theComparisonCharacters to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        set theSourceCharacters to "abcdefghijklmnopqrstuvwxyz"
    else if theCaseToSwitchTo contains "upper" then
        set theComparisonCharacters to "abcdefghijklmnopqrstuvwxyz"
        set theSourceCharacters to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    else
        return theText
    end if
    set theAlteredText to ""
    repeat with aCharacter in theText
        set theOffset to offset of aCharacter in theComparisonCharacters
        if theOffset is not 0 then
            set theAlteredText to (theAlteredText & character theOffset of theSourceCharacters) as string
        else
            set theAlteredText to (theAlteredText & aCharacter) as string
        end if
    end repeat
    return theAlteredText
end changeCaseOfText

-1

High Sierra'yı Server App 5.6 ile yeniden kurun ve çalışır.


Maurizio, hem işletim sistemini hem de Server.app'ı önceki sürümlere indirmeyi kastettiğinizi varsayıyorum? Evet, bunu kendim test ettim ve uygun bir çözüm diyebileceğimden emin değilim, ancak çalıştığını kabul edebilirim. :)
hgv

Ayrıca, bu haftanın 10.14.1 güncellemesinin sorunu çözmediğini de teyit edebilirim
hgv

2
OP, Mojave'yi istedi. "Yüksek Sierra'da çalışıyor" ile yanıt vermek kullanışlı değil.
Ortwin Gentz
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.