centos7解决samba提示NT_STATUS_ACCESS_DENIED

问题现象:

[root@localhost share]# smbclient //192.168.241.143/share
Enter SAMBA\root's password: 
Try "help" to get a list of possible commands.
smb: \> ls
  .                                   D        0  Fri Jun 26 01:54:29 2020
  ..                                  D        0  Fri Jun 26 01:24:21 2020

                28289540 blocks of size 1024. 26489068 blocks available       
smb: \> mkdir dd
NT_STATUS_ACCESS_DENIED making remote directory \dd

问题描述:
创建文件时提示NT_STATUS_ACCESS_DENIED错误,也没有浏览权限

解决:
[root@localhost ~]# chcon -R -t samba_share_t /home/share

配置文件:
[root@localhost ~]# more /etc/samba/smb.conf
[global]
workgroup = SAMBA
security = user
passdb backend = tdbsam
printing = cups
printcap name = cups
load printers = yes
cups options = raw

[share]
path = /home/share
writable = yes
create mask = 0644
force create mode = 0644
directory mask = 0755
force directory mode = 0755
available = yes
browseable = yes
read only = no
forceuser = root
forcegroup = root
[root@localhost ~]#

你可能感兴趣的:(linux系统安装)