CentOS | samba | 設定共享資料夾 | Failed to add entry for user

stone_fall發表於2020-10-06
  • 安裝samba
yum install samba
  • 建立系統使用者
    不建立相應對應系統使用者,新增samba使用者時,會提示
Failed to add entry for user
groupadd user216 -g 6000
useradd user216 -u 6000 -g 6000 -s /sbin/nologin -d /dev/null
  • 配置
vim /etc/samba/smb.conf

# 加入以下內容
[share]
        comment = share for users
        path = /home/backups
        browseable = yes
        writable = yes
        public = no
  • 建立目錄並配置許可權
mkdir /home/backups
chown -R user216:user216 /home/backups
chmod u+rwx,g+rwx,o-rwx /home/backups
  • 新增共享資料夾的使用者
smbpasswd -a user216

在這裡插入圖片描述

  • 關閉防火牆
systemctl stop firewalld
systemctl disable firewalld
  • 開啟samba服務
systemctl start smb
  • 在windows上開啟共享資料夾,即可使用
win+r或者在資料夾上輸入部署了samba服務的ip地址

相關文章