当前位置:   article > 正文

centos7解决samba提示NT_STATUS_ACCESS_DENIED

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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

问题描述:
创建文件时提示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 ~]#

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/182600
推荐阅读
相关标签
  

闽ICP备14008679号