Rod Sott
Cadet
- Joined
- Feb 25, 2015
- Messages
- 8
Hello experts from FreeNAS!
I'm copying files from a Windows 7 folders into a FreeNAS volume, and it keeps showing this message each and every second:
smbd STATUS=daemon 'smbd' finished starting up and ready to serve connectionscreate_connection_session_info failed: NT_STATUS_ACCESS_DENIED
I've read in a Forum, that it's an error with the smb4.conf file, and they said to put the following code into the auxiliary parameters:
idmap config *:backend = tdb
idmap config *:range = 90000000-100000000
Is it safe do to this? At least the error message is gone. My doubt is if it's safe to the mounts to add this backend=tdb option, because if the range is the same as the last two fields at the CIFS window (Idmap Range Low and High), mine is with 90.000.001 / 100.000.000 and maybe I just need the first line.
My /usr/local/etc/smb4.conf is like this:
Thanks in advance!
I'm copying files from a Windows 7 folders into a FreeNAS volume, and it keeps showing this message each and every second:
smbd STATUS=daemon 'smbd' finished starting up and ready to serve connectionscreate_connection_session_info failed: NT_STATUS_ACCESS_DENIED
I've read in a Forum, that it's an error with the smb4.conf file, and they said to put the following code into the auxiliary parameters:
idmap config *:backend = tdb
idmap config *:range = 90000000-100000000
Is it safe do to this? At least the error message is gone. My doubt is if it's safe to the mounts to add this backend=tdb option, because if the range is the same as the last two fields at the CIFS window (Idmap Range Low and High), mine is with 90.000.001 / 100.000.000 and maybe I just need the first line.
My /usr/local/etc/smb4.conf is like this:
Code:
[global]
server max protocol = SMB2
encrypt passwords = yes
dns proxy = no
strict locking = no
oplocks = yes
deadtime = 15
max log size = 51200
max open files = 235127
load printers = no
printing = bsd
printcap name = /dev/null
disable spoolss = yes
getwd cache = yes
guest account = nobody
map to guest = Bad User
obey pam restrictions = yes
directory name cache size = 0
kernel change notify = no
panic action = /usr/local/libexec/samba/samba-backtrace
nsupdate command = /usr/local/bin/samba-nsupdate -g
server string = FreeNAS Server
ea support = yes
store dos attributes = yes
time server = yes
acl allow execute always = true
acl check permissions = true
dos filemode = yes
domain logons = no
local master = yes
idmap config *: backend = tdb
idmap config *: range = 90000001-100000000
server role = standalone
netbios name = NAS
workgroup = WORKGROUP
security = user
pid directory = /var/run/samba
smb passwd file = /var/etc/private/smbpasswd
private dir = /var/etc/private
create mask = 0666
directory mask = 0777
client ntlmv2 auth = yes
dos charset = CP437
unix charset = UTF-8
log level = 2
[Files]
path = /mnt/MainSET/Files
printable = no
veto files = /.snapshot/.windows/.mac/.zfs/
writeable = yes
browseable = yes
recycle:repository = .recycle/%U
recycle:keeptree = yes
recycle:versions = yes
recycle:touch = yes
recycle:directory_mode = 0777
recycle:subdir_mode = 0700
vfs objects = zfsacl
hide dot files = no
guest ok = no
nfs4:mode = special
nfs4:acedup = merge
nfs4:chown = true
zfsacl:acesort = dontcare
[Backup]
path = /mnt/MainSET/Backup
printable = no
veto files = /.snapshot/.windows/.mac/.zfs/
writeable = yes
browseable = yes
recycle:repository = .recycle/%U
recycle:keeptree = yes
recycle:versions = yes
recycle:touch = yes
recycle:directory_mode = 0777
recycle:subdir_mode = 0700
vfs objects = zfsacl
hide dot files = no
guest ok = no
nfs4:mode = special
nfs4:acedup = merge
nfs4:chown = true
zfsacl:acesort = dontcare
Thanks in advance!